Fixed some issues with compiling and added a .gitignore file

This commit is contained in:
Justin 2025-05-04 09:58:39 -05:00
parent d66be24876
commit 88f545867c
3 changed files with 10 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
main.d
obj/*
Shot-Gun-Pete

1
src/include/main.h Normal file
View File

@ -0,0 +1 @@
#include <iostream>

View File

@ -0,0 +1,6 @@
#include "include/main.h"
int main (){
return 0;
}