diff --git a/src/koans/about_functions.clj b/src/koans/about_functions.clj index 82774b5..3e6700b 100644 --- a/src/koans/about_functions.clj +++ b/src/koans/about_functions.clj @@ -12,9 +12,9 @@ (= __ (#(Math/pow % 10) __)) "One function can beget another" - (= __ (((fn [] - (fn [a b] __ a b))) - 4 5)) + (= __ ((fn [] + ((fn [a b] (__ a b)) + 4 5)))) "Higher-order functions take function arguments" (= 25 (___