let firstHighScore = ("Mary", 9001)
let secondHighScore = (name: "James", score: 4096)
let firstHighScore = ("Mary", 9001)
firstHighScore.0
firstHighScore.1
let (firstName, firstScore) = firstHighScore
firstName
firstScore
typealias LineIndexTuple = (line: CTLine, index: Int)