[Nickle] Exceptions with multiple arguments
Carl Worth
nickle@nickle.org
Thu, 5 Dec 2002 12:38:09 -0500
On Dec 5, Keith Packard wrote:
> > In my current program it appears that in the catch block the formals
> > are bound in reverse order.
>
> Yes, they were. Too many twisty indices.
Thanks for the fixes Keith, (and just as quick as usual).
Looks like the message for unhandled exceptions is still reversed:
$ cat broken_exceptions.5c
exception foo (real a, real b);
raise foo (1, 2);
$ nickle broken_exceptions.5c
Unhandled exception "foo" at broken_exceptions.5c:3
2
1
-Carl