sindrenm
data class Point(val x: Int, val y: Int) val p1 = Point(1, 2) val p2 = Point(2, 1) val p3 = Point(1, 2) p1 == p3 p1 != p2