Compare commits

...

1 Commits

Author SHA1 Message Date
cat
497de9e7c3 Added an example program
All checks were successful
Compile / Compile (push) Successful in 5s
2026-01-06 19:38:23 +02:00

7
main.cpp Normal file
View File

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