Help for this page

Select Code to Download


  1. or download this
    my @a1 = qw(My name is Andrew);
    my @a2 = qw(My dog named  Andrew);
    
  2. or download this
    foreach my $a1 (@a1){
      $i++;
      #print $a1 . "\n"; 
    }
    
  3. or download this
    First:for($a = 0; $a <= $i; $a++){
        Second:for($s = 0; $s <= $i; $s++){
    ...
            $d++;
        }
    }
    
  4. or download this
    use strict;
    use warnings;
    ...
        }
        $i++;
    }