Dynamic arrays in Swift

let count = 15;
var arInt = [Int](count: count, repeatedValue: 0);
arInt[0] = 1;