12 lines
177 B
Lua
12 lines
177 B
Lua
function add(x)
|
|
return function (y)
|
|
return x + y, 1, 2
|
|
end
|
|
end
|
|
|
|
function test()
|
|
return add(10)(15)
|
|
end
|
|
|
|
local a, b, c = add(10)(15)
|
|
local pr = print(a, b, c) |