8 lines
151 B
Text
8 lines
151 B
Text
\Displays integers up to 2^31-1 = 2,147,483,647
|
|
code CrLf=9, IntOut=11;
|
|
int N;
|
|
[N:= 1;
|
|
repeat IntOut(0, N); CrLf(0);
|
|
N:= N+1;
|
|
until N<0;
|
|
]
|