Module:Learn Lua
Documentation for this module may be created at Module:Learn Lua/doc
local p = {}
function p.myFunction(frame)
local args = frame.args
local text = args[1] or "Hello"
return "The module says: " .. text
end
return p
Documentation for this module may be created at Module:Learn Lua/doc
local p = {}
function p.myFunction(frame)
local args = frame.args
local text = args[1] or "Hello"
return "The module says: " .. text
end
return p