Hi all, i'm trying to catch multiple errors at once. i've tried a few
things, what is the correct syntax for the catch?

is it
```
(catch (or 'error-one 'error-two)
(lambda () #t)
(lambda (type args) #f))
```
or maybe
```
(catch '(error-one error-two)
(lambda () #t)
(lambda (type args) #f))
```

I'm just trying to determine if my syntax is wrong, or there's some
other problem in my code...

Thanks,
Woody


_______________________________________________
Cmdist mailing list
[email protected]
https://cm-mail.stanford.edu/mailman/listinfo/cmdist

Reply via email to