Remove debugging statements

This commit is contained in:
Tom Willemse 2022-08-12 22:46:50 -07:00
parent dbca60fd23
commit f1e60bd641
2 changed files with 0 additions and 4 deletions

View file

@ -322,9 +322,7 @@ static InterpretResult run() {
push(NUMBER_VAL(-AS_NUMBER(pop()))); push(NUMBER_VAL(-AS_NUMBER(pop())));
break; break;
case OP_PRINT: { case OP_PRINT: {
printf("Printing!\n");
printValue(pop()); printValue(pop());
printf("\n");
break; break;
} }
case OP_JUMP: { case OP_JUMP: {

View file

@ -3,8 +3,6 @@ fun fib(n) {
return fib(n - 1) + fib(n - 2); return fib(n - 1) + fib(n - 2);
} }
print "Hello";
var before = clock(); var before = clock();
print fib(40); print fib(40);
var after = clock(); var after = clock();