1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
2013-03-15 16:15:13 +01:00

26 lines
610 B
C#

/*
Copyright 2010,2011 Kevin Glynn (kevin.glynn@twigletsoftware.com)
*/
using System;
using Path = System.IO.Path;
using Antlr.Runtime;
namespace Twiglet.CS2J.Translator
{
public class Driver
{
public static void Main(string[] args)
{
if (args.Length > 0 && args[0].ToLower() == "-mindriver")
{
Console.Out.WriteLine("sorry, mindriver not implemented");
//MinDriver.MinDriverMain(args);
}
else
{
CS2J.CS2JMain(args);
}
}
}
}