Please sign in to edit, using the button at the upper right corner of the page.


Module:Sandbox: Difference between revisions

From Gunn Wiki
Jump to navigation Jump to search
Test
(No difference)

Revision as of 22:00, 28 September 2021

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