Module:Sandbox/Alicia Fagerving (WMSE): Difference between revisions

Content deleted Content added
No edit summary
No edit summary
Line 18:
cel = frame.args.celsius
fah = cel * 9 / 5 + 32
if cel > 20 then
return "so " .. frame.args.celsius .. " celsius is " .. fah .. " fahrenheit."
msg = "It is warm!"
else
msg = "It's chilly."
end
return "so " .. frame.args.celsius .. " celsius is " .. fah .. " fahrenheit. " .. msg
end