Module:User:Mr rnddude/Sandbox
Appearance
-- This is my module sandbox.
-- Simple pre-module for a
-- requested template.
P = 1014 -- hPa
Incr = 27 -- feet
MSL = -27 -- feet
local p = {}
function p.Percentage (frame)
-- Percentage = share/total * 100
local num1 = tonumber(frame.args[1])
local num2 = tonumber(frame.args[2])
return num1 * num2
end