Browse thread
Re: [Caml-list] OCaml popularity
[
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: | Daniel M. Albro <albro@h...> |
| Subject: | Re: [Caml-list] OCaml popularity |
Hmm... Apparently I'm a liar. OK, I take it back. Doing your version 1 billion times takes 25 seconds on my machine, and my version takes 29 seconds. I still think a break statement would look nicer. - Dan On Thu, 2003-03-13 at 13:29, Karl Zilles wrote: > Daniel M. Albro wrote: > > imperative side of the language will get fleshed out a bit with some > > expanded loop features like break statements, > > You can always implement a break statement as an exception: > > exception Break;; > > try for i = 1 to 10 do > if i == 5 then raise Break > done with Break -> ();; > > As an exception, you could (if you wanted) include special case handling > for the break, or create a more aptly named exception and pass through > data. -- Daniel M. Albro <albro@humnet.ucla.edu> ------------------- 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