Help for this page
class Point: def __init__(self, x, y): ... def inverted(self): return Point(self.y,self.x)
class Point; ... # or Point($self->{y},$self->{x}) # ... TIMTOWTDI }