RosettaCodeData/Task/Loops-For/MATLAB/loops-for-2.m

4 lines
45 B
Mathematica
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
for i = (1:5)
disp(repmat('*',1,i));
end