Jump to content

Module:Sandbox/Ash Crow

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ash Crow (talk | contribs) at 15:05, 14 August 2019. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
--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 "The temperature in fahrenheit is " .. fah .. "°F."
end

return p