1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-24 06:03:17 +00:00

boot.janet, cond doc

Arranged this way seems to make more sense.
This commit is contained in:
John Gabriele 2020-11-28 14:18:35 -05:00 committed by GitHub
parent 7c8f5ef811
commit 87167a21c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -180,8 +180,8 @@
(defmacro cond
`Evaluates conditions sequentially until the first true condition
is found, and then executes the corresponding body. If there are an
odd number of forms, the last expression is executed if no forms
are matched. If there are no matches, return nil.`
odd number of forms, and no forms are matched, the last expression
is executed. If there are no matches, return nil.`
[& pairs]
(defn aux [i]
(def restlen (- (length pairs) i))