Hi all,
I wrote the following in F#:
let fib x =
match x with
| 0 -> 0
| 1 -> 1
| n+2 -> fib n + fib (n+1)
Unfortunately, I got a compiler error stating I had used an infix operator in an unexpected place. Other than using the wildcard character, is there a way I can express my intent in F#?