From 1e799e3f5aa8ebb9aa50a3c6433c2fc70f6d1b64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E5=9B=BD=E6=96=B9?= Date: Sat, 11 Mar 2017 09:43:25 +0800 Subject: [PATCH] fix bug --- src/koans/07_functions.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))