Help for this page

Select Code to Download


  1. or download this
    my $array_reference = \@array;
    
  2. or download this
    print "COLOR: $$array_reference[3]\n";
    
  3. or download this
    foreach (@$reference) { print "IN THE SUB: $_\n"; }