PasteRack.org
Paste # 84435
2016-09-28 21:11:34

Fork as a new paste.

Paste viewed 45 times.


Embed:

  1. #lang racket
  2.  
  3. (define-syntax (testing stx)
  4.   (begin
  5.     (println (local-expand stx 'expression '()))
  6.     (syntax-parse stx
  7.       [(_) #'(empty)])))

=>