Matrix multiplication: Difference between revisions

Content added Content deleted
m (→‎{{header|360 Assembly}}: Superfluous blanks suppressed)
Line 3:
 
=={{header|360 Assembly}}==
<lang 360asm>* Matrix multiplication 06/08/2015
* Matrix multiplication 06/08/2015
MATRIXRC CSECT Matrix multiplication
USING MATRIXRC,R13
Line 109 ⟶ 108:
W DS CL16
YREGS
END MATRIXRC</lang>
</lang>
{{out}}
<pre> 9 12 15
9 12 15
19 26 33
29 40 51
39 54 69</pre>
</pre>
 
 
=={{header|Ada}}==