Files
YesNt-Interpreter/YesNt.CodeEditor/Program.cs
T
2022-03-10 12:43:22 +01:00

21 lines
421 B
C#

namespace YesNt.CodeEditor
{
internal static class Program
{
private static void Main(string[] args)
{
TextEditor textEditor;
if (args.Length > 0)
{
textEditor = new TextEditor(args[0]);
}
else
{
textEditor = new TextEditor();
}
textEditor.Run();
}
}
}