From mboxrd@z Thu Jan 1 00:00:00 1970 Received: (from majordomo@localhost) by pauillac.inria.fr (8.7.6/8.7.3) id QAA09345; Fri, 13 Dec 2002 16:12:38 +0100 (MET) X-Authentication-Warning: pauillac.inria.fr: majordomo set sender to owner-caml-list@pauillac.inria.fr using -f Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id QAA09341 for ; Fri, 13 Dec 2002 16:12:37 +0100 (MET) Received: from mel-rto2.wanadoo.fr (smtp-out-2.wanadoo.fr [193.252.19.254]) by nez-perce.inria.fr (8.11.1/8.11.1) with ESMTP id gBDFCaj09399; Fri, 13 Dec 2002 16:12:36 +0100 (MET) Received: from mel-rta8.wanadoo.fr (193.252.19.79) by mel-rto2.wanadoo.fr (6.7.015) id 3DF630960021FF4B; Fri, 13 Dec 2002 16:12:36 +0100 Received: from iliana (81.48.190.40) by mel-rta8.wanadoo.fr (6.7.015) id 3DF62F84001B6EDC; Fri, 13 Dec 2002 16:12:36 +0100 Received: from luther by iliana with local (Exim 3.36 #1 (Debian)) id 18MrUQ-0000y0-00; Fri, 13 Dec 2002 16:12:34 +0100 Date: Fri, 13 Dec 2002 16:12:34 +0100 To: sebastien FURIC Cc: Luc Maranget , benecke@iws.cs.uni-magdeburg.de, caml-list@inria.fr Subject: Re: [Caml-list] small problem' Message-ID: <20021213151233.GA3694@iliana> References: <200212131227.NAA0000004283@beaune.inria.fr> <3DF9E7FF.2612F88E@tni.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <3DF9E7FF.2612F88E@tni.fr> User-Agent: Mutt/1.4i From: Sven Luther Sender: owner-caml-list@pauillac.inria.fr Precedence: bulk On Fri, Dec 13, 2002 at 03:00:31PM +0100, sebastien FURIC wrote: > > > Luc Maranget a écrit : > > > > > > > > How to omit the syntax error in OCAML in CAML it runs. > > > let hd = function > > > [] -> failwith "hd" > > > | a::l -> a;; > > > Characters 2-3: > > > | a::l -> a > > > ^ > > > Syntax error > > > Mit freundlichen Gruessen > > > Klaus Benecke > > > > I do not see what is your problem exactly. > > If I copy-paste your three lines in ocaml toplevel, I get : > > > > $ ocaml > > Objective Caml version 3.06 > > > > # let hd = function > > [] -> failwith "hd" > > | a::l -> a;; > > val hd : 'a list -> 'a = > > > > --Luc > > Luc, you use Linux, don't you ? > Under Windows, I have: > > Objective Caml version 3.06 > > # let hd = function > [] -> failwith "hd" > | a::l -> a;; > Characters 2-3: > | a::l -> a;; > ^ > Syntax error > # > > This problem typically comes under Windows when you do a "cut and > paste" from a text editor to OcamlWin.exe. To overcome this problem, you > have to copy and paste your function one line at a time. > To avoid making myself nervous, I simply never use OCamlWin.exe (or I > use an older distribution, like the 3.01 one). I prefer to run ocaml in > a "command" windows (in which case it is possible to cut and paste). I see, i think it is the trailing character at the end of ligne which ocaml does not understand. Friendly, Sven Luther ------------------- 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