initial commit

working C++ Development Setup on Linux (VS Code + CMake + vcpkg + clang
)
This commit is contained in:
dl92
2026-01-07 22:43:33 +00:00
parent 62ab80b1d6
commit 67aa4d8692
8 changed files with 51 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello from tut2\n";
return 0;
}