1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-28 11:09:54 +00:00

Update src/boot/boot.janet

Co-authored-by: Michael Camilleri <mike@inqk.net>
This commit is contained in:
John Gabriele 2020-11-29 14:30:48 -05:00 committed by GitHub
parent 82eff7e082
commit 7b4eeecd9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -495,7 +495,7 @@
(defmacro forv
``Do a C-style for-loop for side effects. The iteration variable `i`
can be mutated in the loop, unlike normal for. Returns nil.`
can be mutated in the loop, unlike normal `for`. Returns nil.``
[i start stop & body]
(for-var-template i start stop 1 < + body))