ferrite-lua/examples/test.lua
2026-03-18 19:33:41 +02:00

8 lines
95 B
Lua

function f(x, ...)
local b, c = ...
return x + 5, b, c
end
print(123, f(10, 11, 12))