Property definitions

popcorn $ PostHandler :: defaultinit
class PostHandler
	super Handler

	redef fun post(req, res) do
		var tpl = new Template
		tpl.addn "URI: {req.uri}"
		tpl.addn "Body: {req.body}"
		for name, arg in req.post_args do
			tpl.addn "{name}: {arg}"
		end
        res.send tpl
	end
end
lib/popcorn/examples/handlers/example_post_handler.nit:22,1--34,3