Module:GetRandomCreature: Difference between revisions

From Caves of Qud Wiki
Jump to navigation Jump to search
(Made a better page to test scripting)
 
No edit summary
Line 1: Line 1:
local p = {}
local p = {}
function p.hello(frame)
function p.parse(frame)
     return 'Hello, my ' .. frame.args[1] .. ' is ' .. frame.args[2]
     return 'Hello, my ' .. frame.args[1] .. ' is ' .. frame.args[2]
end
end
return p
return p

Revision as of 20:34, 15 June 2019

Documentation for this module may be created at Module:GetRandomCreature/doc

local p = {}
function p.parse(frame)
    return 'Hello, my ' .. frame.args[1] .. ' is ' .. frame.args[2]
end
return p