ferrite-lua/examples/test.lua
2026-03-15 18:03:59 +02:00

11 lines
147 B
Lua

function add(x)
return function (y)
return x + y, 1, 2
end
end
function test()
return add(10)(15)
end
local c = print(test())