Help for this page

Select Code to Download


  1. or download this
     Broken:
       while ($line = <READTHIS>) {
           if ($line =~ /cat/) {
               print "yeppers!";
           }
       }</I>
    
  2. or download this
    while(<READTHIS>){
        if($_ =~ /cat/) {
    ...
        print $_;
        }