Module:TestMod
Basic test Lua module, can be invoked with {{#invoke: TestMod|FunctionName|arg1|arg2|etc ...}}
local p = {} --p stands for package
function p.hello( frame )
local args = frame.args
return "This should have printed the first argument you entered: " .. args[1] .. "!"
end
return p