1 2 3 4 5 6 7 8 9 10 11 12 13 14
extend("math") # Standard #slog(math:plus(3,4)) // 7 # Partial #ten = math:plus(10) #slog(ten(5)) // 15 # Placeholder (but mostly pointless on this usage) #tiwo = math:plus(_, 2) #slog(two(10)) // 12