file structure and hello world program

This commit is contained in:
2026-05-06 22:18:03 -05:00
parent 5240970e1c
commit dc7ebdbb73
8 changed files with 36 additions and 2 deletions

9
src/main.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include <iostream>
int main(int argc, char** argv) {
std::cout << "hi mom !" << std::endl;
return 0;
}