clearVars function

void clearVars()

Clears all vars that can be used while code runing

Implementation

void clearVars() {
  context = {};
  blocks = {};
  lines = [];
  input = null;
  output = [];
  cur = 0;
  indent = 0;
  runFilePath = null;
  printToTerminal = true;
}