From ddcd28f4d5ae082d9d9bac38aa53342a01e0d908 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Tue, 23 Jan 2024 17:54:27 +0300 Subject: [PATCH] hello world example in main.cpp --- README.md | 6 +++++- main.cpp | 9 +++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 main.cpp diff --git a/README.md b/README.md index b24f381..4b42d21 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..d55e14b --- /dev/null +++ b/main.cpp @@ -0,0 +1,9 @@ +#include +using namespace std; + +int main() +{ + cout << "Hello World\n"; + + return 0; +}