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

6 lines
73 B
Matlab

n = 0;
while (1)
dec2base(n,8)
n = n+1;
end;