in reply to Four or five ways we can make or break an array?

my @array; my $ref = \@array; @$ref = (1,2,3);
is the same as
my @array; @array = (1,2,3);