Browse Source

Create simple main

DricomDragon 5 năm trước cách đây
mục cha
commit
d40aab1746
1 tập tin đã thay đổi với 11 bổ sung0 xóa
  1. 11 0
      colors/main.cpp

+ 11 - 0
colors/main.cpp

@@ -0,0 +1,11 @@
+#include <iostream>
+
+using namespace std;
+
+int main() {
+	cout << "Show colors" << endl;
+
+	cout << "End." << endl;
+
+	return 0;
+}