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