5 lines
77 B
Matlab
5 lines
77 B
Matlab
n = 0;
|
|
while (1)
|
|
printf('%o\n',n);
|
|
n = n+1;
|
|
end;
|