mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
extend("matrix")

A = [[1,2],[3,4]]
B = [[5,6],[7,8]]

slog(
 matrix:add(A, B)
)

C = [[1.2,2],[32.4,4.9]]
D = [[5.3,6.2],[7.4,8.1]]

slog(
 matrix:subtract(C, D)
)

E = [[1,2],[3,4]]
F = [[5,6],[7,8]]

slog(
 matrix:multiply(E, F)
)

G = [[10,20],[30,40]]

slog(
 matrix:transpose(G)
)

q = matrix:subtract(_, B)
slog(
 q(A)
)