Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    my $ar0b = \$array[0];
    
    print "$ar0a :: $ar0b\n";  # will stringify memory address
    
  2. or download this
    my $i = 0;
    $array[$i++] = $_ for ( 5, 6, 7, 8 );