Codebase list lua-ldoc / 7b67f6d4-0c5a-48db-b8dd-1b74867d5759/main tests / styles / three.lua
7b67f6d4-0c5a-48db-b8dd-1b74867d5759/main

Tree @7b67f6d4-0c5a-48db-b8dd-1b74867d5759/main (Download .tar.gz)

three.lua @7b67f6d4-0c5a-48db-b8dd-1b74867d5759/mainraw · history · blame

------------
-- 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
}