Codebase list lua-ldoc / 471526a tests / styles / three.lua
471526a

Tree @471526a (Download .tar.gz)

three.lua @471526araw · 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
}