mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 09:06:41 +02:00
22 lines
415 B
C#
22 lines
415 B
C#
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!");
|
|
}
|
|
}
|
|
}
|