RosettaCodeData/Task/Loops-While/Hexiscript/loops-while.hexi
2023-07-01 13:44:08 -04:00

5 lines
60 B
Text

let i 1024
while i > 0
println i
let i (i / 2)
endwhile