diff --git a/src/koans/07_functions.clj b/src/koans/07_functions.clj index ab22f55..7c42d89 100644 --- a/src/koans/07_functions.clj +++ b/src/koans/07_functions.clj @@ -30,7 +30,7 @@ "Functions can also take other functions as input" (= 20 ((fn [f] (f 4 5)) - #(+ %1 %2))) + #(* %1 %2))) "Higher-order functions take function arguments" (= 25 ((fn [f] (f 5))