local p = {}

function p.main(frame)
	local toReturn = ''
	for i=1,10 do
		toReturn = toReturn .. i
		if i == 100 then break end
	end
	return toReturn
end

return p