Fix non-failing koan, fixes #14

This commit is contained in:
Colin Jones 2011-08-13 12:20:39 -05:00
parent 0978ffad12
commit ada3d8541f
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
(= __ (filter (fn [x] false) '(:anything :goes :here)))
"Or very weak"
(= '(:anything :goes :here) (filter (fn [x] __) '(:anything :goes :here)))
(= __ (filter (fn [x] true) '(:anything :goes :here)))
"Or somewhere in between"
(= [10 20 30] (filter (fn [x] __) [10 20 30 40 50 60 70 80]))

View File

@ -81,7 +81,7 @@
'(* x x)
[false false true false false]
()
true
[:anything :goes :here]
'(< x 31)
'(* 10 x) '(< x 4)
24