summaryrefslogtreecommitdiff
path: root/Data/Libraries/LDoc/tests/example/modtest.lua
blob: cefabf13a6d168a8f516a83696201a8878e30f62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-------
-- A script.
-- Scripts are not containers in the sense that modules are,
-- (although perhaps the idea of 'commands' could be adopted for some utilities)
-- It allows any upfront script comments to be included in the
-- documentation. Any long string marked with the 'usage' tag will also appear
-- in this area.
--
-- @script modtest

--- @usage
local usage = [[
modtest NAME
where NAME is your favourite name!

]]

print ('hello',arg[1])