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

4 lines
45 B
Mathematica
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for i = (1:5)
disp(repmat('*',1,i));
end