From 7fbbf742900b0dcede53c4ef234087b0de08fc4e Mon Sep 17 00:00:00 2001 From: Frolov Roman Date: Fri, 29 Aug 2025 17:28:48 +0200 Subject: [PATCH] Update control-flow.md --- content/documentation/control-flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/documentation/control-flow.md b/content/documentation/control-flow.md index 65da0bb..108cd83 100644 --- a/content/documentation/control-flow.md +++ b/content/documentation/control-flow.md @@ -174,7 +174,7 @@ Evaluates the expressions in order and returns the value of the last expression. # Dofor -``` +```phel (dofor [x :in [1 2 3]] (print x)) # Prints 1, 2, 3 and returns nil (dofor [x :in [2 3 4 5] :when (even? x)] (print x)) # Prints 1, 2 and returns nil ```