AZHenley / knox

A toy programming language written in Go that compiles to C.
MIT License
96 stars 7 forks source link

Fib numbers example erroneously adds ; #142

Closed sgmarz closed 5 years ago

sgmarz commented 5 years ago
int fib(int n) {
        if((n==0)) {
                return 0;
        } else if((n==1)) {
                return 1;
        } else {
                return (fib((n-1));+fib((n-2)););
        }
}

Notice the semicolon after the recursive fib calls.