Module:Sandbox/Alicia Fagerving (WMSE)
Appearance
--this is a comment! whitespace does not matter
--task2
p = {}
function p.Kitten(frame)
return "Meow"
end
p.Hi = function(frame)
strName = frame.args.name or "default name"
return "Hi there " .. strName .. ".<hr>"
end
p.Temperature = function(frame)
cel = frame.args.celsius
fah = cel * 9 / 5 + 32
return fah
end
return p