Help for this page

Select Code to Download


  1. or download this
    my ($a,$b);
    while( $a=<F1>, $b= <F2>, $a or $b) {
      ...
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
      chomp($a,$b);
      print "$a,$b\n";
    }
    
  3. or download this
    1,1
    2,2
    ,3
    ,4
    ,5