Revert "Merge pull request #55 from edtsech/if-true-or"

This reverts commit 72432a0764, reversing
changes made to 25cf9d92ae.
This commit is contained in:
Jonas Enlund 2012-10-16 17:33:01 +03:00
parent 72432a0764
commit e1845b6ef0
2 changed files with 0 additions and 2 deletions

View file

@ -9,7 +9,6 @@
[(when (not ?x) . ?y) (when-not ?x . ?y)]
[(if true ?x ?y) ?x]
[(if true ?x) ?x]
[(if ?x true ?y) (or ?x ?y)]
[(when true . ?x) (do . ?x)]
[(do ?x) ?x]
[(when-not true ?x) _]

View file

@ -9,7 +9,6 @@
'(when-not test else) '(if test nil else)
'(when test body) '(if test (do body))
'(if-not test then else) '(if (not test) then else)
'(or test else) '(if test true else)
'(when-not test then) '(when (not test) then)
'(println "X") '(if true (println "X") nil)
'(println "X") '(if true (println "X"))