RosettaCodeData/Task/Program-termination/Java/program-termination-1.java

7 lines
214 B
Java
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if(problem){
System.exit(integerErrorCode);
//conventionally, error code 0 is the code for "OK",
// while anything else is an actual problem
//optionally: Runtime.getRuntime().exit(integerErrorCode);
}