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 (frame)
local a = 13
local b = 11
return a * b
end
--[[--------------------------< A D D >------------------------------------------------------------------------
]]
local function add (frame)
local a = frame.args[1]
local b = frame.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,
sub = sub
}