Why is Julia messing up my variables?

b = a is quite rare to write but consider

b = [[1,2,3], [4,5,6]]
a = b[1]

or passing a variable into a function.

3 Likes