Jump to content

Module:Sandbox/Alicia Fagerving (WMSE)

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Alicia Fagerving (WMSE) (talk | contribs) at 14:56, 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! 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