Help for this page

Select Code to Download


  1. or download this
        my $array_ref = \@array;
        my $hash_ref  = \%hash;
    
  2. or download this
        my $string = "foo bar";
        my $ref    = \$string;
    
  3. or download this
        my $original = $$ref;