Module:Rates/Sandbox: Difference between revisions
From Ephinea PSO Wiki
mNo edit summary |
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 frame.args[1] | return tonumber(frame.args[1]) | ||
end | end | ||
return p | return p |
Revision as of 22:07, 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 tonumber(frame.args[1]) end return p