LDoc2tl/tests/simple/simple.lua

13 lines
216 B
Lua
Raw Normal View History

2011-04-13 13:02:40 +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