2013-08-25 10:47:45 +02:00
|
|
|
------
|
|
|
|
-- functions returning compound types
|
|
|
|
-- @module struct
|
|
|
|
|
|
|
|
-----
|
|
|
|
-- returns a 'struct'.
|
|
|
|
-- @string name your name dammit
|
2013-08-27 12:47:47 +02:00
|
|
|
-- @tfield string arb stuff
|
|
|
|
-- @treturn st details of person
|
|
|
|
-- @tfield[st] string name of person
|
|
|
|
-- @tfield[st] int age of person
|
2013-08-25 10:47:45 +02:00
|
|
|
function struct(name) end
|
|
|
|
|