Hello, you have come here looking for the meaning of the word
Module:User:Njardarlogar. In DICTIOUS you will not only get to know all the dictionary meanings for the word
Module:User:Njardarlogar, but we will also tell you about its etymology, its characteristics and you will know how to say
Module:User:Njardarlogar in singular and plural. Everything you need to know about the word
Module:User:Njardarlogar you have here. The definition of the word
Module:User:Njardarlogar will help you to be more precise and correct when speaking or writing your texts. Knowing the definition of
Module:User:Njardarlogar, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.
local p = {}
function p.returnValue()
res1 = 'value' or false
res2 = false or 'value'
return res1 .. ' ' .. res2
end
function p.returnMultiple()
res = {'Part 1', 'Part 2'}
return {res, res}
end
function p.useMultiple()
gottenRes = p.returnMultiple()
return gottenRes
end
function p.isAYear(frame)
arg = frame.args
if arg:find('^%-*%d+$') then
return "'''" .. arg .. "'''" .. ' a year'
else
return "'''" .. arg .. "'''" .. ' not a year'
end
end
function p.isNorDate(frame)
arg = frame.args
if arg:find('^%d%d%.$') or arg:find('^%d%.$') then
return "'''" .. arg .. "'''" .. ' is NorDate'
else
return "'''" .. arg .. "'''" .. ' is not NorDate'
end
end
function p.isIn(frame)
list = {'1', '2', 'l'}
arg1 = frame.args
for n, ele in ipairs(list) do
if ele == arg1 then
return 'yes'
end
end
return 'no'
end
function p.isIn2(frame)
list = {}
list = true
list = true
list = true
arg1 = frame.args
return list
end
function p.iterator(frame)
res = ''
for i, x in ipairs({'2', '3', 's'}) do
res = res .. x
end
return res
end
function p.splitter(frame)
f = mw.text.split('n-gasdasd', '-')
return 'works'
end
function p.arg(frame)
page = frame:preprocess('{{PAGENAME}}')
arg1 = frame.args
return arg1
end
function p.search(frame)
page = frame:preprocess('{{PAGENAME}}')
text = 'boat1 boat2'
c, d = text:find('boat')
return text:sub(c,d)
end
function p.printTable(frame)
a = {'a', 'b'}
a.c = 'c'
for i, line in ipairs(a) do
mw.log(line)
end
return 'done'
end
return p