-
Notifications
You must be signed in to change notification settings - Fork 0
Exwide is too slow #2
Copy link
Copy link
Open
Description
When I was trying the Exwide Developing Version on my computer, I found that it was too slow to run fib(30) with following code:
func fib(num) {
... if (num == 1) { return 1 }
... if (num == 2) { return 1 }
... return fib(num - 1) + fib(num - 2)
... }
fib(30)
I strongly think that you should improve it as quick as you can!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels