Jump to content

Module:Sandbox/Rqkp/temp

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Rqkp (talk | contribs) at 05:29, 9 December 2020. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

--[[--------------------------< 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
	}