@a = qw(a b c d e); @b = @a; # @b contains (a b c d e) $b = @a; # $b is 5, as the "=" is overloaded by context