We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f867c4c commit d81612bCopy full SHA for d81612b
README.md
@@ -4,9 +4,12 @@ Learn C++
4
## Goals
5
- [ ] Hello world
6
- [ ] TDD
7
-- [ ]
+- [ ] Dev Workflow - compiling
8
+- [ ] Distribution
9
+
10
11
## Resources
12
+- https://classroom.udacity.com/courses/ud210/lessons
13
- http://www.cppsamples.com/
14
- https://github.com/jesyspa/linear-cpp
15
- http://en.cppreference.com/w
examples/helloworld.cpp
@@ -0,0 +1,6 @@
1
+#include <iostream>
2
3
+int main()
+{
+ std::cout << "Hello world!" << std::endl;
+}
0 commit comments