I want to declare an array in a Swift Playground, but doing it this way
var lengths: [Int] = []
produces a Consecutive statements on a line must be separated by ';'
error. However, declaring the array this other way, works perfectly
var lengths: Int[] = []
I'm running Xcode 6-beta build version 6A215l.