Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            :                                             length >=  8
        ;
    }
    
  2. or download this
    sub is_pw_valid {
        my $password = $_[0];
    ...
       my $is_OK = ( length($password) >= $min_length );
       return $is_OK;
    }