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
Signed by: hwpplayer1
GPG Key ID: 03E547D043AB6C8F
2 changed files with 14 additions and 1 deletions

View File

@ -6,7 +6,11 @@ C++ Training with examples written by the cpp-dojo community
C++ Training with examples written by the cpp-dojo community
Copyright (C) 2023 Mert Gör and contributors
Copyright (C) 2023-2024 Mert Gör and contributors
Copyright (C) 2023-2024 Masscollabs Services
Copyright (C) 2023-2024 Mass Collaboration Labs and contributors
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published

9
main.cpp Normal file
View File

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