tg_git/src/hello_all.cpp
2021-10-26 08:19:04 +02:00

16 lines
533 B
C++

// THIS CODE TO DEMONSTRATE COLLABORATIVE WORK WITH GIT
// ADD YOUR "FEATURE" IN THE MAIN SECTION
#include <iostream>
using namespace std;
int main(int argc,char **argv) {
cout << "Eric SENN has added his feature" << endl;
cout << "Eric SENN has added another feature modified" << endl;
cout << "Else GUY has added another feature there" << endl;
cout << "myname has added another feature" << endl;
cout << "myname has added one more feature here" << endl;
cout << "Eric SENN has added one more feature here" << endl;
return 0;
}