static void StartREPL() { var thread = new Thread(() => { var repl = new REPL(); repl.Process(); }); thread.Start(); }