RosettaCodeData/Task/Loops-While/Ursa/loops-while.ursa

8 lines
94 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
decl int n
set n 1024
while (> n 0)
out n endl console
set n (int (/ n 2))
end while