File: problem.lua

package info (click to toggle)
lua-ldoc 1.5.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 928 kB
  • sloc: makefile: 63; ansic: 56
file content (19 lines) | stat: -rw-r--r-- 280 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
--- this module has a comment.

local local_two

--- a local function
local function local_one ()
end

--- a local function, needing explicit tag.
-- @local here
function local_two ()

end

--- A problem function.
-- @param p a parameter
function problem.fun(p)
    return 42
end