word count exercise, initial commit

This commit is contained in:
Dmitry Kokorin 2016-02-18 23:41:40 +03:00
parent c252a1a93d
commit 59060755a5
5 changed files with 261 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#include "word_count.h"
namespace word_count {
using namespace std;
Words words(const string &str)
{
return Words();
}
}