Loops/While: Difference between revisions

m (→‎{{header|REXX}}: removed OVERFLOW from PRE html tags.)
Line 1,569:
=={{header|Unicon}}==
See [[#Icon|Icon]].
 
=={{header|Uniface}}==
 
<lang Uniface>variables
numeric I
endvariables
 
I = 1024
while (I > 0)
putmess I
I = (I/2)[trunc]
endwhile</lang>
 
=={{header|UNIX Shell}}==
Anonymous user