Program termination: Difference between revisions

Content added Content deleted
No edit summary
Line 358:
<lang Nimrod>if problem:
quit(QuitFailure)
</lang>
 
=={{header|Objeck}}==
The code below, will terminate a program without any cleanup.
 
<lang objeck>
if(problem) {
Runtime->Exit(1);
}
</lang>