aboutsummaryrefslogtreecommitdiffstats
path: root/src/fib.lox
diff options
context:
space:
mode:
Diffstat (limited to 'src/fib.lox')
-rw-r--r--src/fib.lox2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/fib.lox b/src/fib.lox
index 4e126bb..dd6fb5e 100644
--- a/src/fib.lox
+++ b/src/fib.lox
@@ -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();