Module:Sandbox
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Sandbox/doc
-- Test stuff here. local globSandboxVal = "" local p = {} function p.getSandboxVal() return globSandboxVal end function p.setSandboxVal(val) globSandboxVal = val end return p