Browse Source

Implement C++ hello world

DricomDragon 5 năm trước cách đây
mục cha
commit
2747badefe
1 tập tin đã thay đổi với 7 bổ sung0 xóa
  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;
+}