Help for this page

Select Code to Download


  1. or download this
    while (<FILE1>) {
          # this
          @lines = $_;
    }
    
  2. or download this
    while(<FILE1>) {
        push @lines, $_;
    }
    
  3. or download this
    @lines = <FILE1>;