diff --git a/resources/koans.clj b/resources/koans.clj index cb1a8a8..710ea07 100644 --- a/resources/koans.clj +++ b/resources/koans.clj @@ -1,10 +1,9 @@ [["01_equalities" {"__" [true 2 - 7 5 - 4/2 + true false - 6/3 + true 3]}] ["02_lists" {"__" [1 2 3 4 5 diff --git a/src/koans/01_equalities.clj b/src/koans/01_equalities.clj index 0d1a61d..f29551c 100644 --- a/src/koans/01_equalities.clj +++ b/src/koans/01_equalities.clj @@ -6,16 +6,16 @@ (= __ (+ 1 1)) "You can test equality of many things" - (= (+ 3 4) __ (+ 2 __)) + (= (+ 3 4) 7 (+ 2 __)) "Some things may appear different, but be the same" - (= 2 2/1 __) + (= __ (= 2 2/1)) "You cannot generally float to heavens of integers" (= __ (= 2 2.0)) "But a looser equality is also possible" - (== 2.0 2 __) + (= __ (== 2.0 2)) "When things cannot be equal, they must be different" (not= :fill-in-the-blank __))