4 lines
79 B
Mathematica
4 lines
79 B
Mathematica
list = 1:10;
|
|
for k=1:length(list)
|
|
printf('%i\n',list(k))
|
|
end;
|