Loops/Nested: Difference between revisions

(Add Seed7 example)
Line 1,083:
end
print(exitable())</lang>
 
=={{header|Maple}}==
<lang Maple>(m,n) := LinearAlgebra:-Dimensions(M):
for i from 1 to m do
for j from 1 to n do
print(M[i,j]);
if M[i,j] = 20 then
(i,j):=m,n; next;
end if;
end do;
end do:</lang>
 
=={{header|Mathematica}}==
Anonymous user