Help for this page

Select Code to Download


  1. or download this
     
    my $ref;
    {
       my @array = 'element';
       $ref = \@array;
    }
    
  2. or download this
    {
    my @array = 'element';
    }
    $ref = \@array;
    print "$ref\n";
    
  3. or download this
    $ref=\@arr; #### @arr doesn't excist at all
    print "$ref\n";