Rect.y
var y: float;
Description

Top coordinate of the rectangle.

	var rect = Rect (10, 10, 100, 100);
	print(rect.y);
	rect.x = 20;