Module:Blah

From Wikipedia

Documentation for this module may be created at Module:Blah/doc

local p = {}
function p.zahl()
	local pg = mw.title.new("User:Vogone/Blah")
	local text = pg:getContent()
	local hits = 0
	for hit in string.gmatch(text,"[\n]|%-[\n]|") do
		hits = hits+1
	end
	return hits
end
return p