beer_song: initial commit

This commit is contained in:
Dmitry Kokorin 2016-02-29 23:53:47 +03:00
parent 83939d8584
commit bc8abe0d53
5 changed files with 541 additions and 0 deletions

12
cpp/beer-song/beer_song.h Normal file
View file

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