Files

18 lines
189 B
C
Raw Permalink Normal View History

2023-06-21 21:40:51 -04:00
#include <stdio.h>
#include "exceptions.h"
void f() {
throw(89);
printf("All good.\n");
}
int main(void) {
try {
f();
} catch {
printf("Caught %d!\n", excptno);
}
return 0;
}