5 lines
82 B
Text
5 lines
82 B
Text
lvars i = 1024;
|
|
while i > 0 do
|
|
printf(i, '%p\n');
|
|
i div 2 -> i;
|
|
endwhile;
|