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

4 lines
157 B
Text

# 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;