How would you select the value 2.0 from this tuple?
let pt = Point2D(-1.0, 2.0)
pt.iter().nth(1)
pt(1)
pt.1
pt[1]