- (define (probe name connector)
- ;; comment
- (define (print-probe value)
- (newline)
- (display "Probe: ")
- (display name)
- (display " = ")
- (display value))
- (define (process-new-value)
- (print-probe (get-value connector)))
- (define (process-forget-value)
- (print-probe "?"))
- (define (me request)
- (cond ((eq? request 'I-have-a-value)
- (process-new-value))
- ((eq? request 'I-lost-my-value)
- (process-forget-value))
- (else
- (error "Unknown request -- PROBE" request))))
- (connect connector me)
- me)
Thursday, December 11, 2008
Testing Code Highlighting Redux
I have been playing around with adding syntax highlighting for Scheme using syntaxhighlighter (albeit an old version of the tool). Here is a little test to see if it worked.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment