Contact: aviboots(AT)netvision.net.il
41,445 questions
53,992 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 */