1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
extend("math") # Direct sput( math:subtract(10, 3) ) // 7 /* # Partial sub5 = math:subtract(5) sput( sub5(2) ) // 3 sput( sub5(9) ) // -4 # Placeholder minus20 = math:subtract(_, 20) sput( minus20(50) ) // 30 sput( minus20(5) ) // -15 */