6 lines
120 B
Text
6 lines
120 B
Text
integer i = 0
|
|
constant ESC = #1B
|
|
while not find(get_key(),{ESC,'q','Q'}) do
|
|
printf(1,"%o\n",i)
|
|
i += 1
|
|
end while
|