hello world example in main.cpp
This commit is contained in:
parent
7d84600555
commit
ddcd28f4d5
2 changed files with 14 additions and 1 deletions
|
@ -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
9
main.cpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
cout << "Hello World\n";
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue