[READ-ONLY] Mirror of https://github.com/shuuji3/yasashii-cpp. Codes for "やさしいC++ 5th edition" books.google.co.jp/books?id=JHe2tAEACAAJ
0

Configure Feed

Select the types of activity you want to include in your feed.

Prepare files for lesson-15

+7
+1
CMakeLists.txt
··· 5 5 6 6 add_executable(lesson7 src/lesson-7/main.cpp) 7 7 add_executable(lesson11 src/lesson-11/main.cpp) 8 + add_executable(lesson15 src/lesson-15/main.cpp) 8 9 add_executable(override-class-show src/override-class-show/main.cpp)
+6
src/lesson-15/main.cpp
··· 1 + // コピーコンストラクタと代入演算子のオーバーライドの練習 2 + #include <iostream> 3 + 4 + int main() { 5 + std::cout << "Hello world!" << std::endl; 6 + }