Help for this page

Select Code to Download


  1. or download this
    # if ($usedpw ne m/$pw/);
    # should be
    ...
    if( CONDITION ) #no semicolon here
    { # BLOCK
    }
    
  2. or download this
    if( $usedpw =~ m/$pw/ ){ #actaully this inverses yourlogic
        print "Your unique password is: $pw\n";
    }