From 37fbcdb193e88f71fd0a2563e47acca5f260527c Mon Sep 17 00:00:00 2001 From: kopp Date: Wed, 26 Feb 2020 21:20:59 +0100 Subject: [PATCH] fixes #191 --- content/cftbat/do-things.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/cftbat/do-things.html b/content/cftbat/do-things.html index f027ae3b..fbebec1f 100644 --- a/content/cftbat/do-things.html +++ b/content/cftbat/do-things.html @@ -959,7 +959,7 @@

loop

([] (recursive-printer 0)) ([iteration] - (println iteration) + (println (str "Iteration " iteration)) (if (> iteration 3) (println "Goodbye!") (recursive-printer (inc iteration)))))