Implement a case class Point(x,y) and create following methods:
-
add(+) should add two given points
-
move should move a point by a given distance dx and dy
-
distance should return the distance between two given points
-
invert should switch the x and y coordinates.