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