Property definitions

matrix $ MatrixCoordinate :: defaultinit
# Position key when iterating over the values of a matrix
class MatrixCoordinate
	# Index of the current column
	var x: Int

	# Index of the current row
	var y: Int

	redef fun to_s do return "({x},{y})"
end
lib/matrix/matrix.nit:290,1--299,3