Files
YesNt-Interpreter/YesNt.CodeEditor/Program.cs
T
2022-11-17 11:40:51 +01:00

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();
}
}
}