mumu 0.11.1

Lava Mumu is a language for those in the now and that know
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extend("math")

# Direct
sput( math:multiply(6,7)) // 42

# Partial usage
partialM = math:multiply(10)
sput(partialM(9)) // 90

# Placeholder
partialY = math:multiply(_, 3)
sput(partialY(11)) // 33

# Array
sput( math:multiply(5, [2,4,6]) )  // => [ 10, 20, 30 ]
sput( math:multiply([3,3,3], 2) )  // => [ 6, 6, 6 ]