Module:Sandbox/Ash Crow
Appearance
--this is a comment
--task2
p = {}
function p.CleverName(frame)
return "Hello World."
end
p.Hi = function(frame)
anyName = frame.args.name or ""
return "Hello from Lua to my friend " .. anyName .. ".<br>"
end
p.temperature = function(frame)
cel = frame.args.celsius
fah = cel * 9 / 5 + 32
return fah
end
return p