File: mod2.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 (25 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (2)
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
---------------------
-- Another test module.
-- This one uses _Markdown_ formatting, and
-- so can include goodies such as `code`
-- and lists:
--
--  - one
--  - two
--  - three
--
-- @module mod2

--- really basic function. Can contain links such as
-- [this](http://lua-users.org/wiki/FindPage)
-- @param first like `gsb(x)`
-- @param second **bold** maybe? It can continue:
--
--  - another point
--  - finish the damn list
-- @param third as before
function mod2.basic(first,second,third)

end