first commit

This commit is contained in:
2024-10-05 13:59:03 +02:00
commit 5d32eda090
3 changed files with 89 additions and 0 deletions

6
src/main.cpp Normal file
View File

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