Jump to content

Module:User:Mr rnddude/Sandbox

From Wikipedia, the free encyclopedia
This is the current revision of this page, as edited by Mr rnddude (talk | contribs) at 14:13, 6 March 2018 (Needs a "%" sign). The present address (URL) is a permanent link to this version.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)
-- This is my module sandbox.
-- Simple pre-module for a
-- requested template.

local p = {}

function p.percent(frame) -- percentage (eventually)
	-- Percentage = share/total * 100
	local num1 = tonumber(frame.args[1])
	local num2 = tonumber(frame.args[2])
	return num1 / num2 * 100 .. '%'
end

return p