소스 검색

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;
+}