PasteRack.org
Paste # 7715
2014-11-05 11:34:07

Fork as a new paste.

Paste viewed 314 times.


Embed:

  1. #lang racket
  2. (define-for-syntax n 0)
  3.  
  4. (define-syntax (yoba stx)
  5.   #'(begin-for-syntax (displayln "Compiling") (set! n (add1 n))))
  6.  
  7. (displayln "Run")
  8.  
  9. (yoba)
  10. (yoba)

=>

Run

Compiling

Compiling