Email list hosting service & mailing list manager


Re: continuations and threads Matthias Felleisen 21 Mar 2000 04:45 UTC

Marc, my gut feeling is that exceptions and threads would take you far.
Especially the pattern matching example can be dealt with thru an exception
mechanism:

 (with-handlers ((umatched? next-pattern))
   ... match pattern (raise (make-unmatched "...")) ...)

would work just fine, especially since all functions could be global or in
a letrec, whatever is faster.

-- Matthias

P.S. I like elephants with trunks, too :-)