Help for this page

Select Code to Download


  1. or download this
    sub continue_yn
      {
    ...
    
       print "Valid option entered";
      }
    
  2. or download this
    Readonly my %VALID_CHAR => ( y => 1, Y => 1, n => 1, N => 1 );
    sub continue_yn
    ...
    
       print "Valid option entered";
      }