diff --git a/challenge_0/cpp/dewie102/README.md b/challenge_0/cpp/dewie102/README.md deleted file mode 100644 index 4bce4019a..000000000 --- a/challenge_0/cpp/dewie102/README.md +++ /dev/null @@ -1,19 +0,0 @@ -# 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. diff --git a/challenge_0/cpp/dewie102/src/HelloWorld.cpp b/challenge_0/cpp/dewie102/src/HelloWorld.cpp deleted file mode 100644 index 93f87137f..000000000 --- a/challenge_0/cpp/dewie102/src/HelloWorld.cpp +++ /dev/null @@ -1,5 +0,0 @@ -#include - -int main(int argv, char** argc) { - return 0; -}