Help for this page

Select Code to Download


  1. or download this
    my $saved_pass = 'bd0e9f94ce671b3cdd13081fa5a8b32f9ccd9ebf';
    my $eword = 'bd0e9f94ce671b3cdd13081fa5a8b32f9ccd9ebf';
    ...
                           :  $passwd_check = "fail";
                           
    print $passwd_check;
    
  2. or download this
    my $saved_pass = 'bd0e9f94ce671b3cdd13081fa5a8b32f9ccd9ebf';
    my $eword = 'bd0e9f94ce671b3cdd13081fa5a8b32f9ccd9ebf';
    ...
    my $passwd_check = $saved_pass eq $eword  ?  "good" : "fail";
                           
    print $passwd_check;
    
  3. or download this
    $a % 2 ? $a += 10 : $a += 2
    
  4. or download this
    (($a % 2) ? ($a += 10) : $a) += 2
    
  5. or download this
    ($a % 2) ? ($a += 10) : ($a += 2)
    
  6. or download this
    ($saved_pass eq $eword  ?  $passwd_check = "good"  :  $passwd_check ) 
    += "fail";
    
  7. or download this
    if ($saved_pass eq $eword) {
            $passwd_check = "fail"; 
    }else{
            $passwd_check = "fail";
    }