LDoc2tl/tests/styles/one.lua

22 lines
297 B
Lua

--[[
A non-doc comment
multi-line
probably containing license information!
Doesn't use module(), but module name is inferred from file name
]]
------------
-- Test module,
-- Actual blurb here!
----
local one = {}
--- answer to everything.
function one.answer ()
return 42
end
return one