예제 #1
0
파일: OS.java 프로젝트: kxk2907/C-Code
 /** terminate all runners and exit. */
 public static void exit() {
   for (Runner runner : runners.values()) runner.destroy();
   System.exit(0);
 }