addN = function(n) f = function(x) return n + x end function return @f end function adder = addN(40) print "The answer to life is " + adder(2) + "."