Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Redent0r committed Oct 11, 2017
0 parents commit 5daad49
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.o
*.x
6 changes: 6 additions & 0 deletions hanoi.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#include <iostream>

int main()
{
std::cout << "Hello World\n";
}
10 changes: 10 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

CC = g++ -std=c++11
DEBUG = -g
WARN = -Wall

hanoi.x: hanoi.cpp
$(CC) $(WARN) hanoi.cpp -o hanoi.x

clean:
\rm *.o *~ hanoi.x

0 comments on commit 5daad49

Please sign in to comment.