We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 922fc5c commit 1a75fa5Copy full SHA for 1a75fa5
1 file changed
compiler/README.md
@@ -42,15 +42,15 @@ def fib(n):
42
43
return fib(n-1) + fib(n-2)
44
45
-print(fib(40)) # fibonacci sequence forty
+print(fib(45)) # fibonacci sequence forty five
46
```
47
48
| Runtime | real | user | sys |
49
|--------------|-----------|-----------|----------|
50
-| CPython 3.13 | 0m10.251s | 0m10.229s | 0m0.009s |
51
-| Edge Python | 0m0.014s | 0m0.000s | 0m0.003s |
+| CPython 3.13 | 1m56.345s | 1m56.324s | 0m0.009s |
+| Edge Python | 0m0.011s | 0m0.000s | 0m0.003s |
52
53
-*732.2x faster than CPython on pure recursive call overhead.*
+*10,577x faster than CPython on pure recursive call overhead.*
54
55
### Usage
56
0 commit comments