zlox/samples/ch24_fib.lox

6 lines
64 B
Plaintext
Raw Normal View History

2024-08-29 08:28:08 +02:00
var start = clock();
2024-08-30 09:53:32 +02:00
// print fib(20);
2024-08-29 08:28:08 +02:00
print clock() - start;