RosettaCodeData/Task/Loops-While/Jactl/loops-while.jactl

6 lines
52 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
def i = 1024
while (i > 0) {
println i
i /= 2
}