Add base src file

Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
This commit is contained in:
2025-08-26 11:53:36 -05:00
parent dc405f4c99
commit 945807161e
2 changed files with 11 additions and 0 deletions

5
.gitignore vendored
View File

@@ -1,5 +1,9 @@
*
!src
!src/main.cpp
!CMakeLists.txt
!.ignore
!.gitignore
@@ -7,3 +11,4 @@
!README.md
!.clang-format

6
src/main.cpp Normal file
View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, world!" << std::endl;
return 0;
}