Add hello world

This commit is contained in:
2026-05-01 21:02:43 +03:00
parent 516ff224a5
commit af4c37ef29
2 changed files with 6 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}