Module:Sandbox/Aayush dev/sometest

From English Wikipedia @ Freddythechick
--Aayush dev Google Code-in 2019, Introduction to Lua in Wikipedia
--Lua Task 2 - Working with modules - Wikimedia
local p = {}

function p.hello( frame )
	return "Hello, world!"
end

p.Hi = function(frame)
	strName = frame.args.name or "Jimmy"
	return "Hello from Lua to my friend " .. strName .. ".<br>"
end

--Lua Task 3 - Calculations and tests
function p.converttemp(frame)

    cels = tonumber(frame.args.celsius) or 0
	fahr = (cels*9/5)+32 
	msg = fahr
	if cels >= 9 then aa = ' It is warm' else aa = ' It is cold' end
		msg = cels..' degrees celsius is '..fahr..' degrees Fahrenheit.'..aa
	return msg
end

return p