Module:Get
Jump to navigation
Jump to search
Documentation for this module may be created at Module:Get/doc
local var = require('Module:Var')
local p = {}
function p.getVar(getThis)
local key = getThis.args[1]
return var[key] or ("bruh this is stupid: " .. key)
end
return p