14 lines
483 B
C#
14 lines
483 B
C#
|
using KumiScript.Interpreter;
|
||
|
|
||
|
namespace KumiScript {
|
||
|
|
||
|
class KumiScript {
|
||
|
static void Main (string[] args) {
|
||
|
Console.WriteLine(System.IO.Directory.GetCurrentDirectory());
|
||
|
EngineWindow engineWindow = new EngineWindow(800, 600, "KumiScript Unicode");
|
||
|
engineWindow.show();
|
||
|
/*ReadEvalPrintLoop repl = new ReadEvalPrintLoop(Console.OpenStandardInput(), Console.OpenStandardOutput());
|
||
|
repl.Loop();*/
|
||
|
}
|
||
|
}
|
||
|
}
|