Please sign in to edit, using the button at the upper right corner of the page.
If you would like your name changed, contact Mg27713.


Module:Sandbox

From Gunn Wiki
Revision as of 22:00, 28 September 2021 by Mg27713 (talk | contribs) (Test)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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