1.41. Failure

The fail construction is used to abort a task with prejudice. A string argument may be given. A C++ exception is thrown. It cannot be caught by the Felix program (although it can be caught by the driver).
Start C++ section to tut/examples/tut150.flx[1 /1 ]
     1: include "std";
     2: // uncomment to test
     3: //fail "Aborted";
     4: 
End C++ section to tut/examples/tut150.flx[1]