clojure-koans/src/koans/equalities.clj

10 lines
256 B
Clojure
Raw Normal View History

(meditations
2010-07-26 23:20:42 +00:00
"We shall contemplate truth by testing reality, via equality."
(= __ true)
2010-07-26 23:20:42 +00:00
"To understand reality, we must compare our expectations against reality."
(= __ (+ 1 1))
2010-07-26 23:20:42 +00:00
"You can test equality of many things"
(= (+ 3 4) __ (+ 2 __)))