Help for this page

Select Code to Download


  1. or download this
    if( some_return_value = some_function(
            some_variable, some_other_variable,
    ...
    } else {
       // report or otherwise handle the error 
    }
    
  2. or download this
    if( someRV = someFunc( some, someOther, yetMore, oneMore4, luck ) ) {
        // do some stuff here with some_return_value 
    } else {
       // report or otherwise handle the error 
    }