basic example

This commit is contained in:
froejdh_e
2025-04-16 09:04:22 +02:00
parent 6b1d138e6f
commit 13a2ab854d
3 changed files with 42 additions and 0 deletions

9
main.cpp Normal file
View File

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