Skip to content
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
# test01
changed from jenkinsMega

[Read more words!](subdir01)
# test01 bla
xxx
17 changes: 16 additions & 1 deletion helloworld.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,23 @@
#include <iostream>

using namespace std;

void salute01()
{
cout <<"salute 01 tocado por develop, again 010!" << endl;
}

void yujuu02()
{
cout <<"salute 03 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;
}