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

9 lines
96 B
Text

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