local function make_closure (x)
print (x)
return function (y)
return x + y
end
local f = make_closure (11)
local x = f (12)
return x