6 lines
97 B
Text
6 lines
97 B
Text
declare i fixed binary initial (1024);
|
|
|
|
do while (i>0);
|
|
put skip list (i);
|
|
i = i / 2;
|
|
end;
|