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

2 lines
74 B
Text

def task: if . > 0 then ., (./2 | floor | task) else empty end;
1024|task