瀏覽代碼

Create simple main

DricomDragon 5 年之前
父節點
當前提交
d40aab1746
共有 1 個文件被更改,包括 11 次插入0 次删除
  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;
+}