Question: Please code this in OCaml language fibonacci n - Type: - Description: Returns the nth term of the fibonacci sequence. - Assumptions: n is non-negative,

Please code this in OCaml language
fibonacci n - Type: - Description: Returns the nth term of the fibonacci sequence. - Assumptions: n is non-negative, and we will not test your code for integer overflow cases. - Examples: fibonacci =0 fibonacci 1 = 1 fibonacci 3=2 fibonacci 6=8
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
