nim> var x = @[1,2,3] nim> var y = x nim> x.add(4) nim> y @[1, 2, 3] == type seq[int] nim> x @[1, 2, 3, 4] == type seq[int] # To demonstrate 😛