4 lines
99 B
Text
4 lines
99 B
Text
|
|
def while(cond; update):
|
||
|
|
def _while: if cond then ., (update | _while) else empty end;
|
||
|
|
_while;
|