Contact: aviboots(AT)netvision.net.il
39,850 questions
51,771 answers
573 users
import scala.sys.exit object ExitExample { def main(args: Array[String]): Unit = { println("Starting the program") exit(0) // This line will never be reached println("End the program") } } /* run: Starting the program */