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 ]