Module:User:Kephir/test2

Hello, you have come here looking for the meaning of the word Module:User:Kephir/test2. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Kephir/test2, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Kephir/test2 in singular and plural. Everything you need to know about the word Module:User:Kephir/test2 you have here. The definition of the word Module:User:Kephir/test2 will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Kephir/test2, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

* {{#invoke:User:Kephir/test2|count}}
* {{#invoke:User:Kephir/test2|count}}
* {{#invoke:User:Kephir/test2|count}}
* {{#invoke:User:Kephir/test2|count}}
* {{#invoke:User:Kephir/test2|count}}
  • 1
  • 1
  • 1
  • 1
  • 1
{{#invoke:User:Kephir/test2|bailout}}

Boo! asdf


local export = {}

local i = 0

function export.count(frame)
	i = i + 1
	return i
end

function export.get_page(frame)
	local title = mw.title.new(frame.args)
	return title:getContent()
end

function export.bailout(frame)
	return(setmetatable({
		"asdf"
	}, {
		__tostring = function (self)
			return "Boo! " .. self
		end
	}))
end

return export