Content deleted Content added
condition |
No edit summary |
||
(24 intermediate revisions by the same user not shown) | |||
Line 28:
p.temperature2 = function(frame)
fah = (
msg =
if
msg = msg .. "It is warm.<br>"
else
Line 37:
end
return msg
end
p.times = function(frame)
local num = tonumber( frame.args.num ) or 2
local out = "Times table of " .. num .. "<br>"
for i = 1, 12 do
out = out .. num .. " times " .. i .. " equals " .. i * num .. "<br>"
end
return out
end
p.mum = function(frame)
local family = {"Dad", "Mum", "Uncle Stan", "Aunty Elsie", "Brian", "Mama Coco", "Mama Imelda", "Miguel"}
local number = #family
local msg = ""
for i = 1, number do
msg = msg .. "Hello " .. family[i] .. "<br>"
end
return msg
end
p.langnames = function( frame )
local langs = mw.language.fetchLanguageNames()
local langlist = ""
local count = 0
for key, value in pairs( langs ) do
langlist = langlist .. key .. " - " .. value .. "<br>"
count = count + 1
end
return langlist .. "<br>= " .. count .. " languages"
end
p.pageinfo = function (frame)
local pagetitle = frame.args.ptitle
local newobj = mw.title.new(pagetitle)
local id = newobj.id
if id == 0 then
returntext1 = " does not exist "
else
returntext1 = " exists "
end
if newobj.isRedirect == true then
returntext2 = " is a redirect.<br>"
else
returntext2 = " is not a redirect.<br>"
end
return pagetitle .. returntext1 .. "and" .. returntext2
end
|