Facebook
From Sole Camel, 4 Years ago, written in Java.
Embed
Download Paste or View Raw
Hits: 127
  1. package javapp;
  2.  
  3. /**
  4.  *
  5.  * @author kaan_
  6.  */
  7. public class Javapp {
  8.  
  9.      public static void main(String [] args) {
  10.         String firstArgument;
  11.         if(args.length == 0) firstArgument = null;
  12.         else firstArgument = args[0];
  13.         if(firstArgument == null || firstArgument.isEmpty()) firstArgument = "C:\\Users\\kaan_\\Desktop\\javapp\\src\\javapp\\program.txt";
  14.         Compiler compiler = new Compiler(firstArgument);
  15.         compiler.start();
  16.     }
  17.    
  18. }