RosettaCodeData/Task/Count-in-octal/MATLAB/count-in-octal-2.m
2023-07-01 13:44:08 -04:00

5 lines
77 B
Matlab

n = 0;
while (1)
printf('%o\n',n);
n = n+1;
end;