Next: iklib syntaxes loops do*, Previous: iklib syntaxes loops for, Up: iklib syntaxes loops [Index]
do
syntaxThese syntaxes extend the built–in do
syntax as defined by
R6RS.
For do ... (while ...)
:
continue
in the body cause a direct jump to the end of
the current iteration, evaluating the ?test.
break
in the body causes immediate escaping out of the loop. A syntax use
of break
accepts no arguments.
For do ... (until ...)
:
continue
in the body cause a direct jump to the end of
the current iteration, evaluating the ?test.
break
in the body causes immediate escaping out of the loop. A syntax use
of break
accepts no arguments.
For the standard syntax:
continue
in the body cause a direct jump to the end of
the current iteration, evaluating the ?test.
break
in the body causes immediate escaping out of the loop. A syntax use
of break
accepts no arguments.