On May 4, 2009, at 11:00 AM, Abdulaziz Ghuloum wrote:
I think you already knew that, but were thrown off track.
I say this because I think you already know that the
following library and script print the message once
only in Ikarus, right?
(library (foo)
(export f)
(import (rnrs))
(define-syntax f
(begin (display "message\n")
(lambda (x) 42))))
#!r6rs
(import (rnrs) (foo))
(f)
Aziz,,,
