This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
exclib/demo/finally.c

14 lines
237 B
C

#include "exclib.h"
#include <stdio.h>
int main(void)
{
TRY {
THROW(2, NULL);
} EXCEPT {
} FINALLY {
printf("I am in the finally clause, and I am about to issue an unhandled exception error.\n");
} ETRY;
return 0;
}