Property definitions

popcorn $ UserItem :: defaultinit
class UserItem
	super Handler

	redef fun get(req, res) do
		var user = req.param("user")
		var item = req.param("item")
		if user == null or item == null then
			res.send("Nothing received", 400)
		else
			res.send "Here the item {item} of the use {user}."
		end
	end
end
lib/popcorn/examples/routing/example_glob_route.nit:21,1--33,3