Code so far, S02 EP 22

Complete novice to C++, just getting the hang of functions and variables!

#include
#include

using namespace std;

void PrintIntro();
void PlayGame();
string GetGuess();

// the entry point for our application
int main()
{
PrintIntro();
PlayGame();
return 0; //exit the application
}

// introduce the game
void PrintIntro()
{
constexpr int WORD_LENGTH = 9;
cout << “Welcome to Bulls and Cows, a fun word game.\n”;
cout << “can you guess the " << WORD_LENGTH;
cout << " letter isogram I’m thinking of?\n”;
cout << endl;
return;
}

void PlayGame()

{
// loop for the number of turns asking for guesses

	constexpr int NUMBER_OF_TURNS = 5;
	for (int count = 1; count <= NUMBER_OF_TURNS; count++) {
		string Guess = GetGuess();
		cout << "Your guess was: " << Guess << endl;
		cout << endl;

}
}

string GetGuess() 

{
// get a guess from the player
cout << "Enter your guess: ";
string Guess = “”;
getline(cin, Guess);
return Guess;
}