let rec fib n = match n with | 0 | 1 -> 1 | _ -> fib (n - 1) + fib (n - 2)
Standard input is empty
/home/4cuDYY/prog.fs(6,8): error FS0001: Type mismatch. Expecting a
'a -> 'b -> 'c
but given a
'a -> unit
The type ''a -> 'b' does not match the type 'unit'
/home/4cuDYY/prog.fs(6,13): error FS0039: The value or constructor 'f' is not defined
Standard output is empty