Warning: This code is so bright u gotta wear shades!

std::string Get_Guess() {
	// Get a guess from the player
	std::cout << "Enter your Guess mate: ";
	std::string Guess = "";
	getline(std::cin, Guess);
	// repeat the guess back to them
	return Guess;
}

Privacy & Terms