ferrite-lua/examples/test.lua

7 lines
102 B
Lua

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