alpha
Login
or
Join now
shuuji3.xyz
/
yasashii-cpp
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/shuuji3/yasashii-cpp. Codes for "やさしいC++ 5th edition"
books.google.co.jp/books?id=JHe2tAEACAAJ
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Prepare files for lesson-15
author
TAKAHASHI Shuuji
date
7 years ago
(Aug 31, 2019, 1:01 AM +0900)
commit
877110e9
877110e91cd3178c73cc1be527b6cecb0947d0dd
parent
87979647
87979647d290ceefb6ecdcdb0120e5f3bb5bb0c2
+7
2 changed files
Expand all
Collapse all
Unified
Split
CMakeLists.txt
src
lesson-15
main.cpp
+1
CMakeLists.txt
View file
Reviewed
···
5
5
6
6
add_executable(lesson7 src/lesson-7/main.cpp)
7
7
add_executable(lesson11 src/lesson-11/main.cpp)
8
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
View file
Reviewed
···
1
1
+
// コピーコンストラクタと代入演算子のオーバーライドの練習
2
2
+
#include <iostream>
3
3
+
4
4
+
int main() {
5
5
+
std::cout << "Hello world!" << std::endl;
6
6
+
}