1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 22:53:16 +00:00
This commit is contained in:
John Gabriele 2020-11-28 14:29:13 -05:00 committed by GitHub
parent 7c8f5ef811
commit e706494893
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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