Skip to content

Commit d81612b

Browse files
committedOct 14, 2017
Add C++ course + goals to README.md
1 parent f867c4c commit d81612b

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
 

‎README.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,12 @@ Learn C++
44
## Goals
55
- [ ] Hello world
66
- [ ] TDD
7-
- [ ]
7+
- [ ] Dev Workflow - compiling
8+
- [ ] Distribution
9+
810

911
## Resources
12+
- https://classroom.udacity.com/courses/ud210/lessons
1013
- http://www.cppsamples.com/
1114
- https://github.com/jesyspa/linear-cpp
1215
- http://en.cppreference.com/w

‎examples/helloworld.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <iostream>
2+
3+
int main()
4+
{
5+
std::cout << "Hello world!" << std::endl;
6+
}

0 commit comments

Comments
 (0)
Please sign in to comment.