Initial commit

This commit is contained in:
Tyler Perkins
2021-09-29 18:44:00 -04:00
commit 3f6facf64e
4 changed files with 63 additions and 0 deletions

11
src/main.c Normal file
View File

@@ -0,0 +1,11 @@
///////////////////////////////////////////////////////////////////////////////
// Tyler Perkins
// 9-29-21
// Entry point
//
#include <stdio.h>
int main(int argc, char** argv){
printf("Hello World!\n");
}