implement chapter 13 in rust!
This commit is contained in:
parent
621c97102a
commit
32e5e8a41a
23 changed files with 318 additions and 19 deletions
9
lox/fibonacci_timed.lox
Normal file
9
lox/fibonacci_timed.lox
Normal file
|
@ -0,0 +1,9 @@
|
|||
fun fib(n) {
|
||||
if (n < 2) return n;
|
||||
return fib(n - 1) + fib(n - 2);
|
||||
}
|
||||
|
||||
var before = clock();
|
||||
print fib(40);
|
||||
var after = clock();
|
||||
print after - before;
|
Loading…
Add table
Add a link
Reference in a new issue