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:31, 9 December 2020 (Undid revision 993179601 by Rqkp (talk)). 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 = 0
	local b = 0
	
	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
	}