Codebase list lua-ldoc / f87317c5-1407-40b4-aa5b-f99afa77ce33/main tests / classes.lua
f87317c5-1407-40b4-aa5b-f99afa77ce33/main

Tree @f87317c5-1407-40b4-aa5b-f99afa77ce33/main (Download .tar.gz)

classes.lua @f87317c5-1407-40b4-aa5b-f99afa77ce33/mainraw · history · blame

----------------------
-- a module containing some classes.
-- @module classes

local _M = {}

---- a useful class.
-- @type Bonzo

_M.Bonzo = class()

--- a method.
-- function one; reference to @{one.md.classes|documentation}
function Bonzo:one()

end

--- a metamethod
-- function __tostring
function Bonzo:__tostring()

end

return M