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
This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Module:User:Plagiat/sandbox".
Except where otherwise indicated, Everything.Explained.Today is © Copyright 2009-2024, A B Cryer, All Rights Reserved. Cookie policy.