my $arrayptr=\@array; # creates a pointer to an arraymy $scalarptr=\$scalar; # creates a pointer to a scalarmy $hashptr=\%assoc_array; # creates a pointer to a hashmy $funcptr=\&subroutine; # creates a pointer to a subroutine