import Foundation
struct locus { var x: Int var y: Int }
let aerodrome: [locus] = [(1,1), (2,2)]
produces error "Cannot convert value of type '(Int, Int)' to expected element type 'locus'" I love that the compiler accepts 'locus' as a type - I hate that it doesn't accept the Ints I try and input. Help appreciated.