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