Initial commit

This commit is contained in:
2025-12-06 13:55:40 -06:00
commit f77b5e3a87
18 changed files with 4251 additions and 0 deletions

7
dev/c/main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]){
printf("There were %d arguments in %s\n", argc, argv[0]);
return EXIT_SUCCESS;
}