use strict; use warnings; my @array = ("Hello world"); my $refArray = \@array; print $refArray->[0];