示例#1
0
int main()
{
	cout << "Hello EGit !!!" << endl;
	cout << "You are so fantastic!" << endl;
	int i = 123;
	cout << "feature2 = " << i << endl;
	cout << "Feature1 has to be printed!" << endl;
	cout << "rebase0 testing" << endl;

	A a;
	a.dump();

	AA aa;
	aa.dump();

	BB bb;
	bb.dump();

	cout << "Let's make feature 2 as HEAD" << endl;

	CC cc;
	cc.dump();

	cout << "What are you doing, master!" << endl;

	Flash f;
	f.flashing();

	Flash f1;
	f1.flashing();


	return 0;
}