5 lines
139 B
Mathematica
5 lines
139 B
Mathematica
|
|
list1 = [1,5,6,7,-7,-9];
|
||
|
|
for k = list1, % list1 must be a row vector (i.e. array of size 1xn)
|
||
|
|
printf('%i\n',k)
|
||
|
|
end;
|