5 lines
93 B
Text
5 lines
93 B
Text
x int = 1024;
|
|
while ( x > 0 )
|
|
SysLib.writeStdout( x );
|
|
x = MathLib.floor( x / 2 );
|
|
end
|