Help for this page

Select Code to Download


  1. or download this
    if( <condition> ) {
        ...
    ...
    }
    
    my $var = <COND> ? $a :: $b :: $c;
    
  2. or download this
    unless( <cond> ) {
        ...
    ...
    else {
        ...
    }
    
  3. or download this
    if( $loginAttempted ) {
        if( $loginSuccessful ) {
    ...
    else {
        ...
    }