Help for this page

Select Code to Download


  1. or download this
    while (<STDIN>) {
        chomp;
        if ($_ =~ /hello/) {
    ...
    {
        print "bye\n";
    }
    
  2. or download this
    while (<STDIN>) {
        unless (/hello/) {
            style2();
    ...
    sub style2 {
        print "bye\n";
    }