blob: c28689a12990ae5309c9b19a4f1a673286ae6b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
------
-- functions returning compound types
-- @module struct
-----
-- returns a 'struct'.
-- @string name your name dammit
-- @tfield string arb stuff
-- @treturn st details of person
-- @tfield[st] string name of person
-- @tfield[st] int age of person
function struct(name) end
|