Module:Rates/Sandbox

From Ephinea PSO Wiki
< Module:Rates
Revision as of 22:12, 30 April 2023 by Ryan (talk | contribs)

Documentation for this module may be created at Module:Rates/Sandbox/doc

local p = {}

function p.displayRate(frame)
  local rate = tonumber(frame.args[1])
  print(frame, frame.args, frame.args[1], tonumber(frame.args[1]))
  return tonumber(frame.args[1])
end

return p