Jump to content

Module:Scope

Unchecked
From Wikipedia

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

local M = {}

function test( foo )
    return "test"
end

function M.test( foo )
    return test() .. "\n\n" .. "M.test"
end

testVar = frame:getArgument("1")

function M.getTestVar()
    return testVar
end

return M