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