Initial commit

This commit is contained in:
2026-01-01 19:58:22 -06:00
commit 5fa19e9d3d
7 changed files with 264 additions and 0 deletions

14
tests/02_uncaught.c Normal file
View File

@@ -0,0 +1,14 @@
#define DEBUG
#include "../include/except.h"
#include <stdlib.h>
#include <stdio.h>
int main(void){
printf("\n\n");
printf("Uncaught exceptions sanity test.\n");
Exception u = {NULL};
RAISE(u);
return EXIT_SUCCESS;
}