boilerplate added with gitignore, cmakelists, and hello world main.cpp

This commit is contained in:
2026-06-13 20:39:31 -04:00
commit b74b9127bc
3 changed files with 86 additions and 0 deletions

7
src/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <iostream>
#include <ostream>
int main(int argc, char *argv[]) {
std::cout << "Hello, World" << std::endl;
return 0;
}