Skip to content

Exwide is too slow #2

@gandaoyang

Description

@gandaoyang

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions