RosettaCodeData/Task/Loops-While/Jq/loops-while-4.jq

4 lines
99 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
def while(cond; update):
def _while: if cond then ., (update | _while) else empty end;
_while;