There are no
reviewed versions of this page, so it may
not have been checked for adherence to standards.
Documentation for this module may be created at Module:Scope2/doc
local M = {
Scope = require "Module:Scope"
}
function test( foo )
return "Scope2 test"
end
function M.test( foo )
return M.Scope.test() .. "\n\n" .. "Scope2 M.test"
end
return M