From 170cc2cd0d7f61e46c207529ee675b2cb5c8fafc Mon Sep 17 00:00:00 2001 From: Kenneth Kostresevic Date: Thu, 16 Dec 2021 16:26:40 +0100 Subject: [PATCH] Simplify function call --- src/koans/13_creating_functions.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/koans/13_creating_functions.clj b/src/koans/13_creating_functions.clj index ff7203c..35910bd 100644 --- a/src/koans/13_creating_functions.clj +++ b/src/koans/13_creating_functions.clj @@ -15,7 +15,7 @@ "Partial functions allow procrastination" (= 20 (let [multiply-by-5 (partial * 5)] - (reduce multiply-by-5 2 '(2)))) + (multiply-by-5 4))) "Don't forget: first things first" (= [:a :b :c :d]