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
40 lines (36 loc) · 737 Bytes
/
Copy pathhello.cpp
File metadata and controls
40 lines (36 loc) · 737 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
#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 branch" << endl;
// neo:
cout << "Neo branches test" << endl;
// james:
cout << "" << endl;
// eric:
cout << "" << endl;
// cyril:
cout << "" << endl;
// alvin:
cout << "" << endl;
// ellen:
cout << "" << endl;
// tito:
cout << "" << endl;
// steven:
cout << "" << endl;
// chris:
cout << "" << endl;
// mouris:
cout << "" << endl;
// luke:
cout << "" << endl;
//lulu
cout << "" << endl;
int exitCode = 0;
return exitCode;
}