RosettaCodeData/Task/Loops-Do-while/Jq/loops-do-while-1.jq

5 lines
157 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
# Perform the action, then check the condition, etc
def do_while( action; condition ):
def w: action | if (condition | not) then empty else ., w end;
w;