/// A comment /// - Note: important things let x = 42 struct Point { let x: Int = x let y: Int = x func mag2() { return x*x + y*y; } }