19 lines
865 B
Plaintext
19 lines
865 B
Plaintext
(***********************************************************************)
|
|
(* *)
|
|
(* Objective Caml *)
|
|
(* *)
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
(* *)
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
|
(* Automatique. Distributed only by permission. *)
|
|
(* *)
|
|
(***********************************************************************)
|
|
|
|
(* $Id$ *)
|
|
|
|
(function "fib" (n: int)
|
|
(if (< n 2)
|
|
1
|
|
(+ (app "fib" (- n 1) int)
|
|
(app "fib" (- n 2) int))))
|