![]() | ![]() | ![]() | until | ![]() |
|
| test-form
| [Macro] |
Purpose
Evaluates nil.
Package :gbbopen-tools
Module :gbbopen-tools
Arguments and values
| test-form | A form | |
| declaration | A declare expression (not evaluated) | |
| forms | An implicit progn of forms to be evaluated |
See also
do-until
do-while
while
Examples
> (let ((i 0))
(until (> (incf i) 3)
(print i)))
1
2
3
nil
> (until 't (print "No"))
nil
>
The GBBopen Project
![]() | ![]() | ![]() | until | ![]() |