forked from betanetworks/hello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.cpp
More file actions
42 lines (38 loc) · 833 Bytes
/
Copy pathhello.cpp
File metadata and controls
42 lines (38 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <iostream>
#include <string>
#include <stdio.h>
using namespace std;
int main(int /*argc*/ , char * /*args*/[])
{
string message("Hello, world!!");
cout << message << endl;
cout << "practice fork & pull request" << endl;
// rudy:
cout << "f&pr from rudy" << endl;
// neo:
cout << "" << endl;
// james:
cout << "fork and pull request from James" << endl;
// eric:
cout << "" << endl;
// cyril:
cout << "" << endl;
// alvin:
cout << "" << endl;
// ellen:
cout << " f&pr from ellen." << endl;
// tito:
cout << "" << endl;
// steven:
cout << "" << endl;
// chris:
cout << "" << endl;
// mouris:
cout << "" << endl;
// luke:
cout << "" << endl;
//lulu
cout << "" << endl;
int exitCode = 0;
return exitCode;
}