Help for this page

Select Code to Download


  1. or download this
    open(FILE, "<", "Q.txt");
    
  2. or download this
            while($number <= $#column) {       #go through the array from 
    +0 to the last element
                       $number++;
                     }
    
  3. or download this
    for my $element (@array_name) {
        # Do something with $element here
    }
    
  4. or download this
    for my $index (0 .. $#array_name) {
        # Do something with $index here
    }