clojure-koans/src/koans/equalities.clj

10 lines
250 B
Clojure
Raw Normal View History

(meditations
"We shall contemplate truth by testing reality, via equality."
2010-07-17 23:45:49 +00:00
(= __ true)
"To understand reality, we must compare our expectations against reality."
(= __ (+ 1 1))
"You can test equality of many things"
2010-04-02 22:43:32 +00:00
(= (+ 3 4) __ (+ 2 __)))