Removed debug display

This commit is contained in:
2022-08-11 13:50:24 +01:00
parent 5c93bf663a
commit 46097000a8

View File

@@ -177,12 +177,6 @@ void repl() {
int size = 0; int size = 0;
unsigned char* tb = collateCompiler(&compiler, &size); unsigned char* tb = collateCompiler(&compiler, &size);
for (int i = 0; i < size; i++) {
printf("%d ", tb[i]);
}
printf("\n");
//run the bytecode //run the bytecode
initInterpreter(&interpreter, tb, size); initInterpreter(&interpreter, tb, size);
runInterpreter(&interpreter); runInterpreter(&interpreter);