my @array = ( 1, 2, 3 ); my $array_ref = @array; print "REF: ", $array_ref," "; print "VALUES: ", join " ", @$array_ref;