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())));
break;
case OP_PRINT: {
printf("Printing!\n");
printValue(pop());
printf("\n");
break;
}
case OP_JUMP: {

View file

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