Browse thread
[Caml-list] Strange syntax behavior
-
John Goerzen
- Jon Harrop
- Kenneth Knowles
- Christophe TROESTLER
- skaller
- Hendrik Tews
- Richard Jones
[
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: | -- (:) |
| From: | Christophe TROESTLER <debian00@t...> |
| Subject: | Re: [Caml-list] Strange syntax behavior |
On Tue, 1 Jun 2004, John Goerzen <jgoerzen@complete.org> wrote:
>
> In the case of if...then...else, the else clause appears to consume
> only the first statement following. With try..with, the with clause
> appears to consume everything it possibly can,
You can think "with ... -> ..." almost as "fun ... -> ...", so for the
latter you certainly expect all that follows to be part of the body of
the function. This is also the same for the "match ... with ... ->
..." close.
> despite even attempts to stop that with a begin..end clause.
Try this:
(try p "test" with Not_found -> p "exc"); p "done"
or
begin
try p "test"
with Not_found -> p "exc"
end;
p "done"
ChriS
-------------------
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