Module:Rates/Sandbox: Difference between revisions
From Ephinea PSO Wiki
(Created page with "local p = {} function p.displayRate(frame) local rate = tonumber(frame.args[1]) return rate end return p") |
mNo edit summary |
||
Line 3: | Line 3: | ||
function p.displayRate(frame) | function p.displayRate(frame) | ||
local rate = tonumber(frame.args[1]) | local rate = tonumber(frame.args[1]) | ||
return | return frame.args[1] | ||
end | end | ||
return p | return p |
Revision as of 22:06, 30 April 2023
Documentation for this module may be created at Module:Rates/Sandbox/doc
local p = {} function p.displayRate(frame) local rate = tonumber(frame.args[1]) return frame.args[1] end return p