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:06, 28 September 2021 by Mg27713 (talk | contribs) (better)
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(frame)
    return globSandboxVal
end

function p.setSandboxVal(frame)
    local args = getArgs(frame, {
        valueFunc = function(key, value)
            return value
        end
    })
    globSandboxVal = args[1]
end

return p