소스 검색

Implement C++ hello world

DricomDragon 5 년 전
부모
커밋
2747badefe
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      main.cpp

+ 7 - 0
main.cpp

@@ -0,0 +1,7 @@
+#include <iostream>
+
+int main() {
+	std::cout << "Hello World!" << std::endl;
+
+	return 0;
+}