Browse Source

Implement C++ hello world

DricomDragon 5 years ago
parent
commit
2747badefe
1 changed files with 7 additions and 0 deletions
  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;
+}