Help for this page

Select Code to Download


  1. or download this
    my $i = 0;
    while (<FILE>) {
      next if ++$i % 2;
      print;
    }
    
  2. or download this
    while (<FILE>) {
      next if $. % 2;
      print;
    }
    
  3. or download this
    my $toggle = 0;
    while (<FILE>) {
       next if $toggle ^= 1;
       print;
    }
    
  4. or download this
    for (;;) {
       last if not defined (my $line1 = <FILE>);
    ...
    
       print($line1, $line2);
    }