PasteRack.org
Paste # 34902
2018-11-15 05:27:42

Fork as a new paste.

Paste viewed 1939 times.


Embed:

  1. #lang racket
  2.  
  3. (define-syntax x
  4.                (syntax-rules ()
  5.                              [('* 1 1) (+ 1 1)]))
  6. (x (+ 1 (* 1 1)))

=>