Multiplication tables: Difference between revisions

(→‎{{header|Mathematica}}: fixed formationg)
Line 1,550:
12 0 0 0 0 0 0 0 0 0 0 0 144
</lang>
 
=={{header|Maxima}}==
<lang Maxima>for i: 1 thru 12 do (
for j: 1 thru 12 do (
if j>=i or j=1 then printf(true, "~4d", i*j) else printf(true, " ")
),
printf(true, "~%")
);</lang>
 
=={{header|MUMPS}}==