Skip to content

Commit

Permalink
Challenge 0
Browse files Browse the repository at this point in the history
Just making sure everything is working and I am doing everything right.
  • Loading branch information
dewie102 committed Jan 21, 2017
1 parent 2286b64 commit f82cbc2
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
19 changes: 19 additions & 0 deletions challenge_0/cpp/dewie102/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Hello World
###### C++ 11

### 1. Approch to solving the probelm

Pretty self explainitory, just getting the basics down and making sure everything is correct.

### 2. How to compile and run this

In Windows - I used the Visual Studio C++ compiler, move to the proper directory and run:

```
cl.exe src/HelloWorld.cpp
HelloWorld.exe
```

### 3. How this program works

The program just outputs "Hello, World!" on the main output stream.
5 changes: 5 additions & 0 deletions challenge_0/cpp/dewie102/src/HelloWorld.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#include <iostream>

int main(int argv, char** argc) {
return 0;
}

0 comments on commit f82cbc2

Please sign in to comment.