Added C++ implementation of 06-candy-factory.

You will have to compile (make) the program before running the test.
This commit is contained in:
Joergen Edelbo
2013-10-08 16:26:03 +02:00
parent 01446cf881
commit 6148cff95e
3 changed files with 188 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
CPP_FLAGS=-std=gnu++0x
tf-06: tf-06.cpp
$(CXX) $(CPP_FLAGS) -o $@ $<
.PHONY: clean
clean:
rm tf-06