RosettaCodeData/Task/Loops-While/Oz/loops-while-2.oz

8 lines
94 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
declare
I = {NewCell 1024}
in
for while:@I > 0 do
{Show @I}
I := @I div 2
end