Summary description for CompilerTool.
        public static void Main(string [] args)
        {
            CompilerTool ct = new CompilerTool();

            ct.ParseArguments(args);
            ct.Run();
        }
Exemple #2
0
 public static void Main(string [] args)
 {
     CompilerTool ct = new CompilerTool();
     ct.ParseArguments(args);
     ct.Run();
 }