RosettaCodeData/Task/Loops-While/Jq/loops-while-4.jq
2017-09-25 22:28:19 +02:00

3 lines
99 B
Text

def while(cond; update):
def _while: if cond then ., (update | _while) else empty end;
_while;