$ perl -E 'my @x = qw{1 2 3}; say for @x; my $y = \\@x; say $y; say $$y; say for @$$y' 1 2 3 REF(0x600003e80) ARRAY(0x60008a868) 1 2 3