Property definitions

popcorn $ QueryStringHandler :: defaultinit
class QueryStringHandler
	super Handler

	redef fun get(req, res) do
		var tpl = new Template
		tpl.addn "URI: {req.uri}"
		tpl.addn "Query string: {req.query_string}"
		for name, arg in req.get_args do
			tpl.addn "{name}: {arg}"
		end
        res.send tpl
	end
end
lib/popcorn/examples/handlers/example_query_string.nit:22,1--34,3