mirror of
https://github.com/janet-lang/janet
synced 2026-05-02 19:51:27 +00:00
(and ... <truthy-value> true) will return true as per docs.
This commit is contained in:
@@ -345,6 +345,8 @@
|
||||
(assert (= (and 0 1 nil) nil) "and 0 1 nil")
|
||||
(assert (= (and 1) 1) "and 1")
|
||||
(assert (= (and) true) "and with no arguments")
|
||||
(assert (= (and 1 true) true) "and with trailing true")
|
||||
(assert (= (and 1 true 2) 2) "and with internal true")
|
||||
|
||||
(assert (= (or true true) true) "or true true")
|
||||
(assert (= (or true false) true) "or true false")
|
||||
|
||||
Reference in New Issue
Block a user