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