6 lines
108 B
Matlab
6 lines
108 B
Matlab
for k=1:10,
|
|
printf('%i', k);
|
|
if k==10, break; end;
|
|
printf(', ');
|
|
end;
|
|
printf('\n');
|