11 lines
147 B
Lua
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()) |