Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/documentation/control-flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
Loading