![]() | ![]() | ![]() | do-until | ![]() |
|
| form | [Macro] |
Purpose
Evaluates form and then nil.
Package :gbbopen-tools
Module :gbbopen-tools
Arguments and values
| form | A form | |
| test-form | A form |
Examples
> (let ((i 0))
(do-until (print i)
(> (incf i) 3)))
1
2
3
nil
> (let ((i 10))
(do-until (print i)
(> (incf i) 3)))
10
nil
>
The GBBopen Project
![]() | ![]() | ![]() | do-until | ![]() |