16 lines
533 B
C++
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;
|
|
}
|