New repo setup

This commit is contained in:
2024-05-28 14:50:00 -05:00
commit f68c320396
51 changed files with 4612 additions and 0 deletions

7
main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include "include/math.h"
int main() {
printf("acosh(%f): %f\n", 5.0, acosh(5.0));
return 0;
}