PasteRack.org
Paste # 5114
2013-10-10 16:04:24

Forked from paste # 9164.

Fork as a new paste.

Paste viewed 1800 times.


Embed:

out of order

  1. #lang racket
  2.  
  3. (define f (g))
  4.  
  5. (define-syntax g
  6.   (syntax-rules ()
  7.     ((_) 42)))
  8.  
  9. f
  10. 111

=>

42

111