blob: 15d2a39cd3a708b7a9b6541db72ebf742d96b518 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
------------
-- 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
|