In Xcode 6 beta2, we can write the following piece of code: let a = [1, 2] // a refers to an immutable array var b = a // b refers to the same array, but b is mutable b1 = 3 // change contents of...
Sign in to post comments.
Comments (0)
Sign in to post comments.