RunConsole() public method

Runs the console.
public RunConsole ( string Args ) : void
Args string
return void
Beispiel #1
0
        public static void RunREPL(string [] Args)
        {
            if (Environment.GetEnvironmentVariable("TERM") == null)
            {
                Environment.SetEnvironmentVariable("TERM", "ANSI");
            }

            var pch = new PythonConsoleHost();

            pch.RunConsole(Args);
        }
Beispiel #2
0
        public static void RunREPL(string []Args)
        {
            if (Environment.GetEnvironmentVariable("TERM") == null)
            {
                Environment.SetEnvironmentVariable("TERM", "ANSI");
            }

            var pch = new PythonConsoleHost();
            pch.RunConsole(Args);
        }