1
0
mirror of https://github.com/janet-lang/janet synced 2024-12-23 23:10:26 +00:00

truthy/falsey is more accurate than true/false

This commit is contained in:
Andriamanitra 2023-09-22 03:04:41 +03:00
parent aeacc0b31b
commit ee142c4be0

View File

@ -590,10 +590,10 @@
* `:repeat n` -- repeats the next inner loop `n` times.
* `:when condition` -- only evaluates the current loop body when `condition`
is true.
is truthy.
* `:unless condition` -- only evaluates the current loop body when `condition`
is false.
is falsey.
The `loop` macro always evaluates to nil.
```