First note there is more than one code/macro expander for Gambit: Gambit's default, the one with Black Hole, and the syntax-case library file, for instance.
Hi:
3 questions...
I'm looking for a "when" macro and tried one patterned on "unless". It behaves like "when-not". How do I write a proper "when" macro?
(define-syntax when-not
(syntax-rules ()
((when-not test body ...)
(if test #t (begin body ...)))))
(define (test-when n)
(when-not (not (< n 50))
(println "line1 " n)
(println "line2 " n)
(println "line3 " n)))
(test-when 0) (test-when 3) (test-when 55)
;-------------------------------------------
Re "define-syntax" the Gambit-C manual says .."Note that this implementation of syntax-case does not support special forms that are specific to Gambit." What are the implications of this statement? Is there a preferred model for writing Gambit-C macros?
;------------------------------------------------------------
Some code has a "##" prefix like..
(##define-macro (err form)
`(let ()
(##declare (safe) (generic))
(err-form (lambda () ,form))))
Why is that?
=bob=
_______________________________________________
Gambit-list mailing list
Gambit-list@iro.umontreal.ca
https://webmail.iro.umontreal.ca/mailman/listinfo/gambit-list