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 13:18:55 +02:00
|
|
|
cout << "Eric SENN has added another feature" << endl;
|
2021-09-19 21:18:55 +02:00
|
|
|
return 0;
|
|
|
|
}
|