RosettaCodeData/Task/Matrix-multiplication/Klong/matrix-multiplication.klong

5 lines
98 B
Text
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
mul::{[a b];b::+y;{a::x;+/'{a*x}'b}'x}
[[1 2] [3 4]] mul [[5 6] [7 8]]
[[19 22]
[43 50]]