aboutsummaryrefslogtreecommitdiff
path: root/src/Main.java
blob: b2a8cf05b410efdd513674cc464769bca858ad53 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*    */ import java.io.PrintStream;
/*    */ 
/*    */ public class Main
/*    */ {
/*    */   public static void main(String[] args)
/*    */   {
/* 12 */     String[] arrayOfString = args; int j = args.length; for (int i = 0; i < j; i++) { String i = arrayOfString[i];
/*    */       try {
/* 14 */         ScriptReader.runScript(i);
/*    */       }
/*    */       catch (Exception e) {
/* 17 */         e.printStackTrace();
/* 18 */         System.err.println("in file: " + i);
/*    */       }
/*    */       try {
/* 21 */         new PressAnyKey("Press enter to continue...");
/*    */       }
/*    */       catch (Exception localException1)
/*    */       {
/*    */       }
/*    */     }
/*    */   }
/*    */ }

/* Location:           Modulus.jar
 * Qualified Name:     Main
 * JD-Core Version:    0.6.2
 */