LuaPlay/test.lua
2025-08-27 19:44:15 +02:00

18 lines
226 B
Lua

M = {}
-- @return nil
local function test()
print("Hello from test")
end
-- Returns the sum of two numbers.
--
-- @param x1 number
-- @param x2 number
function M.addtest(x1, x2)
return x1 + x2
end
M.test = test
return M