Module:Sandbox/Rqkp/temp
Appearance
Although this page looks like it is written in wikitext, this is actually the documentation page for Module:Sandbox/Rqkp/temp. The documentation can have wikitext as it is displayed on Module:Sandbox/Rqkp/temp.
--[[--------------------------< S U B >------------------------------------------------------------------------
]]
local function sub (main)
local a = main.args[1]
local b = main.args[2]
return a - b
end
--[[--------------------------< A D D >------------------------------------------------------------------------
]]
local function add (main)
local a = main.args[1]
local b = main.args[2]
return a + b
end
--[[--------------------------< E X P O R T E D F U N C I O N S >--------------------------------------------
]]
return {
add = add,
main = main
}