PS: a nice example to try in the macro stepper, to see the evaluation order:

#lang racket
(define-syntax (foo stx) #'1)
(define-syntax (bar stx) #'foo)

(let ()
  bar
  (let ()
    bar
    (let ()
      bar
      bar)
    (#%expression bar)
    bar)
  (+ bar bar)
  bar)

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to