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:
parent
00b7e7c69f
commit
075ccc1890
1 changed files with 5 additions and 5 deletions
|
|
@ -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 __)))
|
||||
|
|
|
|||
Loading…
Reference in a new issue