var two = [1, 2, 3]
one == two
That's because Swift checks for safety first (variable declaration).
This issue only seems to affect arrays. Strings, numbers, and dictionaries are fine.
var two = [1, 2, 3]
one == two
That's because Swift checks for safety first (variable declaration).