7 lines
187 B
Text
7 lines
187 B
Text
def until(cond; next):
|
|
def _until: if cond then . else (next|_until) end;
|
|
_until;
|
|
|
|
def while(cond; update):
|
|
def _while: if cond then ., (update | _while) else empty end;
|
|
_while;
|