Help for this page

Select Code to Download


  1. or download this
    while(<>)  {
            print "yes\n" if /^y$/i || /^yes$/i;
    }
    
  2. or download this
    while(<>)  {
            print "yes\n" if /^y$/i;
            print "yes\n" if /^yes$/i;
    }