Simply print 'history'

This commit is contained in:
Matúš Púll 2024-11-02 18:17:46 +01:00
parent 79c02ef701
commit 4e7bfee548

View file

@ -87,7 +87,7 @@ int main(void) {
cout << std::endl; cout << std::endl;
// Print game statistics // Print game statistics
cout << "How did the game go\n"; cout << "History\n";
for(auto guess : history) for(auto guess : history)
cout << format_guess_history(sequence, guess) << std::endl; cout << format_guess_history(sequence, guess) << std::endl;