ferrite-lua/examples/test.lua

8 lines
114 B
Lua

function add(x)
return function (y)
return x + y
end
end
local d = add(5)
global c = print(d(7))