diff --git a/helloworld.cpp b/helloworld.cpp index 3d98240..50087ad 100644 --- a/helloworld.cpp +++ b/helloworld.cpp @@ -1,8 +1,23 @@ #include using namespace std; + +void salute01() +{ + cout <<"salute 01 tocado por develop, again 03!" << endl; +} + +void yujuu02() +{ + cout <<"salute 02 tocado por branch!" << endl; +} int main(int argc, char** argv) { - cout<<"Hello World!"; + cout<<"Hello World from develop! br06" << endl; + cout<<"Said again!" << endl; + + salute01(); + yujuu02(); + return 0; }