2012-12-29 11:09:34 +01:00
|
|
|
--[[
|
|
|
|
A non-doc comment
|
|
|
|
multi-line
|
|
|
|
probably containing license information!
|
2013-05-09 12:52:15 +02:00
|
|
|
Doesn't use module(), but module name is inferred from file name.
|
|
|
|
If you have initial licence comments that look like doc comments,
|
|
|
|
then set `boilerplate=true`
|
2012-12-29 11:09:34 +01:00
|
|
|
]]
|
|
|
|
------------
|
|
|
|
-- Test module,
|
|
|
|
-- Actual blurb here!
|
|
|
|
----
|
|
|
|
|
|
|
|
local one = {}
|
|
|
|
|
|
|
|
--- answer to everything.
|
|
|
|
function one.answer ()
|
|
|
|
return 42
|
|
|
|
end
|
|
|
|
|
|
|
|
return one
|
|
|
|
|
|
|
|
|