On Mar 27, 5:46 am, Michele Simionato <[email protected]> wrote:
> (define t (make-table ---)) > (initialize-table! t) > (define-syntax m (lambda (x) --- use t ---)) Oops, in R6RS we cannot intersperse definitions with non-definitions, so that would be spelled (define t (make-table ---)) (define dummy (initialize-table! t)) (define-syntax m (lambda (x) --- use t ---))
