10 lines
186 B
C#
10 lines
186 B
C#
|
namespace Nerfed.Compiler
|
|||
|
{
|
|||
|
public class Program
|
|||
|
{
|
|||
|
internal static void Main(string[] args)
|
|||
|
{
|
|||
|
Compiler.Compile(args[0], args[1]);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|