Documentation for this module may be created at Module:Sandbox/CurlyTurkey/doc
--require "mw.text"
--require "string"
--require "table"
local z = {
mw = require "Module:mw"
}
local p = {}
function p.googy(frame)
local name = frame.args[1]
return "Yo, " .. name
end
local zoom
function p.listFrame(frame)
for monkey in frame.args do
zoom = zoom .. monkey
return zoom
end
end
function p.returnIt(frame)
return frame.args[1]
end
return p