Documentation for this module may be created at Module:Sandbox/Vmjari/task3/doc
local p = {}
p.temperature = function (frame)
local cel = tonumber(frame.args.celsius) or 0
local fah = cel*9/5 + 32
local msg = cel.." degrees Celsius is "..fah.." degrees Fahrenheit."
if cel > 9 then
return msg.." It is warm."
else
return msg.." It is cold."
end
end
return p