Fibonacci numbers in OCaml
Example for versions
OCaml 3.11
This example uses straightforward recursive solution. Printf.printf
does formatted output.
let rec fibonacci n =
if n < 3 then
1
else
fibonacci (n-1) + fibonacci (n-2)
let () =
for n = 1 to 16 do
Printf.printf "%d, " (fibonacci n)
done;
print_endline "..."
Comments
]]>blog comments powered by Disqus
]]>