ferrite-lua/examples/test.lua
2026-03-15 19:07:43 +02:00

9 lines
145 B
Lua

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