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; +}