Help for this page

Select Code to Download


  1. or download this
    use ExtUtils::MakeMaker qw' prompt ';
    ...
    ...
       $username =~ s/\s+$//;
       ...
    }
    
  2. or download this
    if( prompt('Are you new?', 'n') =~ /y/ ){
       CreateNewUser();
    } else {
       ActivateOldUser();
    }