Merge pull request #107 from shtukas/introducing-nil

First encounter with `nil`
This commit is contained in:
Colin Jones 2016-05-12 10:22:21 -05:00
commit e8526b704c

View File

@ -32,5 +32,8 @@
"Symbolism is all around us" "Symbolism is all around us"
(= 'hello (symbol __)) (= 'hello (symbol __))
"What could be equivalent to nothing?"
(= __ nil)
"When things cannot be equal, they must be different" "When things cannot be equal, they must be different"
(not= :fill-in-the-blank __)) (not= :fill-in-the-blank __))