13 lines
247 B
Lua
13 lines
247 B
Lua
|
------
|
||
|
-- functions returning compound types
|
||
|
-- @module struct
|
||
|
|
||
|
-----
|
||
|
-- returns a 'struct'.
|
||
|
-- @string name your name dammit
|
||
|
-- @treturn * details of person
|
||
|
-- @tfield string name of person
|
||
|
-- @tfield int age of person
|
||
|
function struct(name) end
|
||
|
|