Help for this page

Select Code to Download


  1. or download this
    while (<FH>) {
        push (@lines, $_);
    }
    
  2. or download this
    while (<FH>) {
        chomp;   # removes the newline from $_
        push (@lines, $_);
    }