Init
This commit is contained in:
commit
c0b5de5a4f
5 changed files with 161 additions and 0 deletions
18
test.lua
Normal file
18
test.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue