Exemplo n.º 1
0
        static void Main(string[] args)
        {
            try
            {
                Console.WriteLine("RTG E-RIN Compiler version 0.1");
                Console.WriteLine("Copyright RTG 2004 All rights reserved");
                Console.WriteLine();

                CommandLineExecutor cle = new CommandLineExecutor();

                if (cle.ParseCommandLine(args))
                {
                    cle.CompileAndExecute();
                }
                else
                    return;
                // cle.Compile();
                // cle.Execute();

            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }
        }