Browse Source

Create simple main

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