From 24e2aca31eb5583a090a00befb080e72b7c78715 Mon Sep 17 00:00:00 2001 From: Love Billenius Date: Thu, 5 Sep 2024 21:40:28 +0200 Subject: [PATCH] format --- src/evilhangman.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/evilhangman.cpp b/src/evilhangman.cpp index 273ea27..ced71a8 100755 --- a/src/evilhangman.cpp +++ b/src/evilhangman.cpp @@ -220,8 +220,7 @@ int main(int argc, char *argv[]) { } while (!hasWon && !hasLost); const char *out = hasWon ? "congratulations! You've won! 🎉" : "you lost."; - std::cout << "The word was '" << dictionary[0] << "', " << out - << std::endl; + std::cout << "The word was '" << dictionary[0] << "', " << out << std::endl; return 0; }