|
while condition body
Executes a block of code repeatedly while a condition evaluates to the true boolean value.
define while ( condBlock bodyBlock ) {
if $condBlock {
[lambda () $bodyBlock]
while $condBlock $bodyBlock
}
Mind you this would not be particularly efficient, since tail
recursion is not implemented in the current version of the Tea
interpreter.
|