This commit is contained in:
Imbus 2025-08-27 19:44:15 +02:00
commit c0b5de5a4f
5 changed files with 161 additions and 0 deletions

18
test.lua Normal file
View 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