Documentation for this module may be created at Module:Sandbox/noisytoot/test module/doc

local test = {}

function test.hello_world()
	return "Hello, world!"
end

function test.hello(name)
	return "Hello, " .. name .. "!"
end

function test.counter(minimum, maximum)
	local i = minimum
	while i < maximum do
		returnvalue = {}
		i = i + 1
		returnvalue = returnvalue .. "\n" .. i
		return returnvalue
	end
end