예제 #1
0
파일: main.cpp 프로젝트: HanLuo/snippets
int main() {
    HelloFunc();
    return 0;
}
예제 #2
0
파일: main.cpp 프로젝트: xunyuw/iFlyQA
int main(int argc, char** argv) {
	HelloFunc();
	HelloFunc2();
	return 0;
}
예제 #3
0
파일: main.c 프로젝트: AoboJaing/learngit
int main(){
	printf("I'm aobo sir.\n");
	HelloFunc();
	sayMy();
	return 0;
}
예제 #4
0
파일: main.c 프로젝트: 7ym0n/cmake-project
int main(int argc, char* argv[]){
  HelloFunc();
  //cout << "The cmake main." << endl;
  return 0;
}