Documentation for this module may be created at Module:Sandbox/Xeror/Test/doc
dataset = {} local p = {} function p.set(frame) dataset[frame.args[1]] = 'true' end function p.get(frame) return 'this is ' .. dataset[frame.args[1]] end return p