summaryrefslogtreecommitdiff
path: root/Data/Libraries/LDoc/tests/styles/three.lua
blob: 09c0ceb1f561935b2e701996d0905b098bbfe964 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
------------
-- Alternative to no-magic style.
-- Description here
----

--- documented, but private
local function question ()
end

--- answer to everything.
-- @return magic number
local function answer ()
    return 42
end

--- @export
return {
    answer = answer
}