RosettaCodeData/Task/Loops-While/Uniface/loops-while.uniface
2016-12-05 23:44:36 +01:00

9 lines
96 B
Text

variables
numeric I
endvariables
I = 1024
while (I > 0)
putmess I
I = (I/2)[trunc]
endwhile