mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 17:16:39 +02:00
11 lines
275 B
C#
11 lines
275 B
C#
namespace YesNt.CodeEditor
|
|
{
|
|
internal static class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
TextEditor textEditor = args.Length > 0 ? new TextEditor(args[0]) : new TextEditor();
|
|
textEditor.Run();
|
|
}
|
|
}
|
|
} |