private static void RunFile(string file)
 {
     try {
         _engine.DoFile(file);
     }
     catch (SkryptException e) {
         Console.ForegroundColor = ConsoleColor.Red;
         _engine.ErrorHandler.ReportError(e);
     }
     catch (Exception e) {
         Console.ForegroundColor = ConsoleColor.Yellow;
         Console.WriteLine(e);
     }
 }