Given tow seqs, a and b, declared like this:
var
a = @[1, 2, 3]
b = @[4, 5, 6]
will a = b
create a new seq copying everything from b to a or, reuse a? I have problems specially regarding to shallowCopy. I cannot tell what are they doing different.