Property definitions

nitcorn $ MyOtherData :: defaultinit
# Another data structure, subclass to `MyData`
class MyOtherData
	super MyData
	serialize

	# An integer
	var i: Int

	redef fun to_s do return "<MyOtherData str:{str} more:{more or else "null"} i:{i}>"
end
lib/nitcorn/examples/src/restful_annot.nit:111,1--120,3