Standardize whitespace a bit more.

This commit is contained in:
Colin Jones
2011-02-13 19:53:25 -06:00
parent a395f47b86
commit ae28d1dd98
2 changed files with 50 additions and 38 deletions

View File

@@ -24,21 +24,21 @@
(meditations
"Macros are like functions created at compile time"
(= __ (hello "Macros!"))
"Macros are like functions created at compile time"
(= __ (hello "Macros!"))
"Can I haz some infix?"
(= __ (infix (9 + 1)))
"Can I haz some infix?"
(= __ (infix (9 + 1)))
"Remember, these are nothing but code transformations"
(= __ (macroexpand '(infix (9 + 1))))
"Remember, these are nothing but code transformations"
(= __ (macroexpand '(infix (9 + 1))))
"You can do better than that, hand crafting ftw!"
(= __ (macroexpand '(infix-better (10 * 2))))
"You can do better than that, hand crafting ftw!"
(= __ (macroexpand '(infix-better (10 * 2))))
"Things dont always work as you would like them to... "
(= __ (macroexpand '(infix-better ( 10 + (2 * 3)))))
"Things dont always work as you would like them to... "
(= __ (macroexpand '(infix-better ( 10 + (2 * 3)))))
"Really, you dont understand recursion until you understand recursion"
(= 36 (r-infix (10 + (2 * 3) + (4 * 5)))))
"Really, you dont understand recursion until you understand recursion"
(= 36 (r-infix (10 + (2 * 3) + (4 * 5)))))