Jump to content

Module:Sandbox

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Ohm100 (talk | contribs) at 15:30, 18 December 2017. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

--ohmoma100
-- [Lua task #3]  Create your own Lua module on English Wikipedia
local p = {} -- p stands for package
p.temperature = function(frame)
	cel = frame.args.celsius
	fah = 9*cel/5+32
	return ""..cel.. " degrees Celsius is "..fah.." degrees Fahrenheit".. ".<br>"
end
return p