Help for this page

Select Code to Download


  1. or download this
    while ($line = <READTHIS>) {
        if ($line =~ /cat/) {
            print "yeppers!";
        }
    }
    
  2. or download this
    while ($line = <READTHIS>) {
        if ($line =~ /cat/) {
    ...
            print $line;
        }
    }
    
  3. or download this
    while ($line = <READTHIS>) {
        print "MOO!\n";
    ...
            print "yeppers!";
        }
    }