hello world example in main.cpp

This commit is contained in:
Mert Gör
2024-01-23 17:54:27 +03:00
parent 7d84600555
commit ddcd28f4d5
2 changed files with 14 additions and 1 deletions

9
main.cpp Normal file
View File

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World\n";
return 0;
}