Files
YesNt-Interpreter/YesNt.CodeEditor/Program.cs
T
Stone-Red-Code 68a9bde5d9 - Add tasks
- Add check if file exist
- Improved code structure
2021-10-09 20:23:28 +02:00

21 lines
414 B
C#

namespace YesNt.CodeEditor
{
internal 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();
}
}
}