=== script === adder = { a -> { b -> + a b } } add10 = adder 10 inc = adder 1 print (add10 32) print (inc 665) === output === 42 666