math-mumu 0.1.13

Math functions plugin for the MuMu / Lava language
Documentation
1
2
3
4
5
6
7
8
9
10
extend("math")

slog( math:pow(2, 3) ) // 8

square = math:pow(2)
slog( square(5) ) // 32

raise3 = math:pow(_, 3)
slog( raise3(2) ) // 8