RosettaCodeData/Task/Loops-While/Uniface/loops-while.uniface

10 lines
96 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
variables
numeric I
endvariables
I = 1024
while (I > 0)
putmess I
I = (I/2)[trunc]
endwhile