Help for this page

Select Code to Download


  1. or download this
    for (my $i=0; $i<5; $i++) {
      print "$i : first_string ref[$i] second_string parent_ref.ref[$i] th
    +ird_string\n";
    }
    
  2. or download this
    my $ref2 = 'parent_ref';
    
    for (my $i=0; $i<5; $i++) {
      print "$i : first_string ref[$i] second_string $ref2.ref[$i] third_s
    +tring\n";
    }