Change order of equality question.

Move introduciton of (not=) form to a position before the
"Something is not equal to nothing" koan, in order to reinforce
its use case.
This commit is contained in:
David Kinzer 2014-01-22 13:28:17 -05:00
parent 00b7e7c69f
commit 075ccc1890

View file

@ -17,8 +17,11 @@
"But a looser equality is also possible"
(= __ (== 2.0 2))
"When things cannot be equal, they must be different"
(not= :fill-in-the-blank __)
"Something is not equal to nothing"
(= __ (not (= 1 nil)))
(= __ (not= 1 nil))
"Strings, and keywords, and symbols: oh my!"
(= __ (= "foo" :foo 'foo))
@ -27,7 +30,4 @@
(= :foo (keyword __))
"Symbolism is all around us"
(= 'foo (symbol __))
"When things cannot be equal, they must be different"
(not= :fill-in-the-blank __))
(= 'foo (symbol __)))