RosettaCodeData/Task/Program-termination/Scala/program-termination.scala

7 lines
170 B
Scala
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
if (problem) {
// sys.exit returns type "Nothing"
sys.exit(0)
// conventionally, error code 0 is the code for "OK",
// while anything else is an actual problem
}