2012-12-29 11:09:34 +01:00
|
|
|
------------
|
|
|
|
-- Alternative to no-magic style.
|
|
|
|
-- Description here
|
|
|
|
----
|
|
|
|
|
2013-05-06 11:38:20 +02:00
|
|
|
--- documented, but private
|
|
|
|
local function question ()
|
|
|
|
end
|
|
|
|
|
2012-12-29 11:09:34 +01:00
|
|
|
--- answer to everything.
|
|
|
|
-- @return magic number
|
|
|
|
local function answer ()
|
|
|
|
return 42
|
|
|
|
end
|
|
|
|
|
|
|
|
--- @export
|
|
|
|
return {
|
|
|
|
answer = answer
|
|
|
|
}
|
|
|
|
|
|
|
|
|