From 46097000a8cdedb96a9bc702cafcccc6b7bbd3ee Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Thu, 11 Aug 2022 13:50:24 +0100 Subject: [PATCH] Removed debug display --- source/repl_main.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/repl_main.c b/source/repl_main.c index 4c6e99a..7c8568c 100644 --- a/source/repl_main.c +++ b/source/repl_main.c @@ -177,12 +177,6 @@ void repl() { int size = 0; unsigned char* tb = collateCompiler(&compiler, &size); - for (int i = 0; i < size; i++) { - printf("%d ", tb[i]); - } - - printf("\n"); - //run the bytecode initInterpreter(&interpreter, tb, size); runInterpreter(&interpreter);