vec/tests/01_sanity.c
2024-11-15 16:52:59 -06:00

12 lines
141 B
C

#define DEBUG
#include "../include/except.h"
int main(void){
TEST(NULL);
TEST(0 > 1);
TEST(1 > 0);
return EXIT_SUCCESS;
}