food chain: initial commit

This commit is contained in:
Dmitry Kokorin 2016-02-29 13:59:14 +03:00
parent e607f45d38
commit 70581bd363
2 changed files with 92 additions and 0 deletions

View file

@ -0,0 +1,13 @@
#pragma once
#define EXERCISM_RUN_ALL_TESTS
#include <string>
namespace food_chain {
std::string verse(int index);
std::string verses(int from_index, int to_index);
std::string sing();
}