mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 17:16:39 +02:00
21 lines
414 B
C#
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();
|
|
}
|
|
}
|
|
} |