summaryrefslogtreecommitdiff
path: root/Data/Libraries/LDoc/tests/factory/mymod.lua
blob: d872047c5e6d6d691de3e34cd0f46f6acd590fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- mymod

local mymod = {}

--- everything!
function mymod.query (
    a, --string: first arg
    b, --int: second arg
    c  --table: arg
)
end


--- for everything.
function mymod.answer (
    a, -- first arg
    b, -- second arg
    c)  -- third arg
end

return mymod