[
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: | 2005-05-13 (13:34) |
From: | Julien Verlaguet <Julien.Verlaguet@p...> |
Subject: | question on exceptions |
I have the following peace of code exception E;; let x=E;; exception E;; I don't understand why the two following things are not equivalent : # x=E;; - : bool = true # match x with | E -> true | _ -> false;; - : bool = false Is this normal ? J