also, `setOf(Point(1, 2), Point(1, 2))` creates a ...
# announcements
d
also,
setOf(Point(1, 2), Point(1, 2))
creates a set of two members despite
Point(1,2)==Point(1,2)
. is this because i had yet to override
hashCode
?