RosettaCodeData/Task/Loops-While/Jq/loops-while-4.jq
2023-07-01 13:44:08 -04:00

3 lines
99 B
Text

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