12 lines
129 B
C++
12 lines
129 B
C++
#include "word_count.h"
|
|
|
|
namespace word_count {
|
|
|
|
using namespace std;
|
|
|
|
Words words(const string &str)
|
|
{
|
|
return Words();
|
|
}
|
|
|
|
}
|