Files
YesNt-Interpreter/YesNt.Interpreter/Program.cs
T

23 lines
520 B
C#

using System;
using YesNt.Interpreter.Runtime;
namespace YesNt.Interpreter
{
internal static class Program
{
private static void Main(string[] args)
{
if (args.Length == 1)
{
YesNtInterpreter interpreter = new YesNtInterpreter();
interpreter.Initialize();
interpreter.Execute(args[0]);
}
else
{
Console.WriteLine("No path specified!");
}
}
}
}