RosettaCodeData/Task/Count-in-octal/MATLAB/count-in-octal-2.m

6 lines
77 B
Mathematica
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
n = 0;
while (1)
printf('%o\n',n);
n = n+1;
end;