Added an example program
All checks were successful
Compile / Compile (push) Successful in 5s

This commit is contained in:
2026-01-06 19:38:23 +02:00
parent e8312aae1d
commit 497de9e7c3

7
main.cpp Normal file
View File

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