Skip to content

Commit

Permalink
Merge pull request YearOfProgramming#155 from BlakeBarnes00/master
Browse files Browse the repository at this point in the history
Created my Hello World program
  • Loading branch information
Remillardj committed Jan 3, 2017
2 parents 6077ff9 + 73529ec commit d166fac
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
5 changes: 5 additions & 0 deletions challenge_0/cpp/blakebarnes00/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
CXX = g++
FLG = -w -std=c++11

all:
$(CXX) $(FLG) -o HelloWorld main.cpp
7 changes: 7 additions & 0 deletions challenge_0/cpp/blakebarnes00/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#include <iostream>

int main()
{
std::cout << "Hello World!\n";
return 0;
}

0 comments on commit d166fac

Please sign in to comment.