Browse thread
[Caml-list] strange behaviour of ocamldoc
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2004-09-15 (13:47) |
From: | Michael <micha-1@f...> |
Subject: | Re: [Caml-list] Confused |
Hi, On Mittwoch, 15. September 2004 15:28, you wrote: >But this does not: ># let rec build = function 0 -> [] | n -> 1e-6 :: build (n-1) in > let test = 1. :: build 1000;; >Syntax error it works with let test = let rec build = function 0 -> [] | n -> 1e-6 :: build (n-1) in 1. :: build 1000 ;; Michael ------------------- To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/ Beginner's list: http://groups.yahoo.com/group/ocaml_beginners