RosettaCodeData/Task/Loops-While/Hexiscript/loops-while.hexi

6 lines
60 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let i 1024
while i > 0
println i
let i (i / 2)
endwhile