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

6 lines
73 B
Mathematica
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
n = 0;
while (1)
dec2base(n,8)
n = n+1;
end;