my(@a); unshift(@a, 'three'); unshift(@a, 'two'); unshift(@a, 'one');is the same as @a = qw(one two three) A. Append with push() - eg:
my(@a); push(@a, 'one'); push(@a, 'two'); push(@a, 'three');is the same as @a = qw(one two three)
my(@a); unshift(@a, 'three'); unshift(@a, 'two'); unshift(@a, 'one');is the same as @a = qw(one two three) A. Append with push() - eg:
my(@a); push(@a, 'one'); push(@a, 'two'); push(@a, 'three');is the same as @a = qw(one two three)