Concept
Parenthetical language
Books
Journey Statuslearning Tags
(define-syntax-rule (or a b) (if a a b))
scheme
(define-syntax-rule (or a b) (if a a b))
(or x y) -> (if x x y) ; macro just rearranges list elements