LDoc2tl/tests/simple/simple.lua

13 lines
228 B
Lua
Raw Normal View History

2011-04-12 19:07:47 +02:00
------------
-- A little old-style module
local io = io
-- we'll look for this
module 'simple'
-- if it were 'module (...)' then the name has to be deduced.
--- return the answer.
function answer()
return 42
end