18 lines
226 B
Lua
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
|