Initial commit

This commit is contained in:
2026-02-02 19:18:03 -06:00
commit b12d5ed230
7 changed files with 261 additions and 0 deletions

13
tests/02_uncaught.c Normal file
View File

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