clojure-koans/src/koans/equalities.clj

13 lines
320 B
Clojure
Raw Normal View History

(meditations
"We shall contemplate truth by testing reality, via equality."
(= true false)
"To understand reality, we must compare our expectations against reality."
(= 0 (+ 1 1))
"Sometimes we will ask you to fill in the values"
(= __ (+ 1 1))
"You can test equality of many things"
2010-04-02 22:43:32 +00:00
(= (+ 3 4) __ (+ 2 __)))