2024-01-26 05:37:51 +00:00
|
|
|
using KumiScript.Interpreter;
|
|
|
|
|
|
|
|
namespace KumiScript {
|
|
|
|
|
|
|
|
class KumiScript {
|
|
|
|
static void Main (string[] args) {
|
2024-07-12 00:17:00 +00:00
|
|
|
/*Console.WriteLine(System.IO.Directory.GetCurrentDirectory());
|
2024-01-26 05:37:51 +00:00
|
|
|
EngineWindow engineWindow = new EngineWindow(800, 600, "KumiScript Unicode");
|
2024-07-12 00:17:00 +00:00
|
|
|
engineWindow.show();*/
|
|
|
|
ReadEvalPrintLoop repl = new ReadEvalPrintLoop(Console.OpenStandardInput(), Console.OpenStandardOutput());
|
|
|
|
repl.Loop();
|
2024-01-26 05:37:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|