File: init.lua

package info (click to toggle)
lua-ldoc 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 928 kB
  • sloc: makefile: 63; ansic: 56
file content (35 lines) | stat: -rw-r--r-- 608 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-----------
-- Main module.
-- This contains four functions, two of which are in
-- another section implicitly specified using the 'within' tag.
-- (This allows functions placed together to be classified
-- separately)
--
-- Furthermore, the 'mylib.extra' functions will be added
-- as their own section, allowing you to document a logical module
-- spanning several files
--
-- @module mylib

--- first.
function A ()

end

--- second, within its own section.
-- @within Utilities
function B ()

end

--- third.
function C ()

end

--- fourth, together with second.
-- @within Utilities
function D ()

end