Help for this page

Select Code to Download


  1. or download this
    some_function(
        some_variable, some_other_variable, 
        and_yet_another_variable, and_one_more_for, luck
    );
    
  2. or download this
    if( some_return_value = some_function( 
        some_variable, some_other_variable, 
    ...
    } else {
       // report or otherwise handle the error 
    }
    
  3. or download this
    if( 
        some_return_value = some_function( 
    ...
    else {
       // report or otherwise handle the error 
    }
    
  4. or download this
    if( someRv = fSome( some, oSome, AYAnother, OneMoreFor, luck )) {
        // do some stuff here with someRv 
    ...
    else {
       // report or otherwise handle the error 
    }