Move at the specified position.

(1, 1) is the top-left corner of the display.

Property definitions

console $ TermMove :: at
	# Move at the specified position.
	#
	# (1, 1) is the top-left corner of the display.
	init at(row: Int, column: Int) do
		self.row = row
		self.column = column
	end
lib/console/console.nit:101,2--107,4