What is the ERR5RS behavior of the following code snippet?  
ie, should I have expected to have caught the exception??

> (import (rnrs))

> (define die (lambda () (vector-ref '#(1 2) 3)))

> (with-exception-handler (lambda (h) #t) (lambda () (die)))


Error: vector-ref: 3 is not a valid index into vector
Entering debugger; type "?" for help.
debug> #<EOF>

> 




_______________________________________________
Larceny-users mailing list
[email protected]
https://lists.ccs.neu.edu/bin/listinfo/larceny-users

Reply via email to