tg_git/src/hello_all.cpp

17 lines
533 B
C++
Raw Normal View History

2021-09-19 21:18:55 +02:00
// 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;
2021-09-20 15:16:56 +02:00
cout << "Eric SENN has added another feature modified" << endl;
2021-09-20 15:03:43 +02:00
cout << "Else GUY has added another feature there" << endl;
2021-10-26 07:55:02 +02:00
cout << "myname has added another feature" << endl;
2021-10-26 08:11:30 +02:00
cout << "myname has added one more feature here" << endl;
2021-10-26 08:07:31 +02:00
cout << "Eric SENN has added one more feature here" << endl;
2021-09-19 21:18:55 +02:00
return 0;
}