#include <iostream>
#include <string>

struct wordType 
{
   std::string word  = "";
   int    count = 0;
};

int main() {
	wordType object { "hello world" };
}