Codebase list lua-ldoc / 2a00fb23-02d5-4bef-be2b-08fbba0e64a7/main tests / simple / simple_alias.lua
2a00fb23-02d5-4bef-be2b-08fbba0e64a7/main

Tree @2a00fb23-02d5-4bef-be2b-08fbba0e64a7/main (Download .tar.gz)

simple_alias.lua @2a00fb23-02d5-4bef-be2b-08fbba0e64a7/mainraw · history · blame

------------
-- A new-style module.
-- Shows how @alias can be used to tell ldoc that a given name
-- is a shorthand for the full module name
-- @alias M

local simple_alias = {}
local M = simple_alias

--- return the answer. And complete the description
function M.answer()
  return 42
end

return simple_alias