Help for this page

Select Code to Download


  1. or download this
    sub prompt {
        my( $prompt, $validator, $reprompt ) = @_;
    ...
    
        return $response;
    }
    
  2. or download this
            last
                if  $validator->( $response );
    
  3. or download this
        prompt(
            "Knarfle the garthog? ",
            sub { shift(@_) =~ /^[yn]/i },
            "Yes or no? ",
        );