Initial commit

This commit is contained in:
theoleuthardt 2025-03-13 10:03:32 +01:00
commit da4c292fbd
2 changed files with 70 additions and 0 deletions

6
src/main.cpp Normal file
View file

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