RosettaCodeData/Task/Inverted-syntax/Racket/inverted-syntax.rkt

8 lines
115 B
Racket
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
#lang racket
(when #t (displayln "true"))
((displayln "true") . when . #t)
(define a 6)
(set! a 5)
(a . set! . 6)