From e23585e633213d62cd5f7ef83907455dab98fccf Mon Sep 17 00:00:00 2001 From: user22241 Date: Sat, 6 Jun 2026 14:50:29 +0300 Subject: [PATCH] Update hello_world.cpp --- exercises/practice/hello-world/hello_world.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/hello-world/hello_world.cpp b/exercises/practice/hello-world/hello_world.cpp index 4c8c5c31..3493cbb7 100644 --- a/exercises/practice/hello-world/hello_world.cpp +++ b/exercises/practice/hello-world/hello_world.cpp @@ -4,6 +4,6 @@ using namespace std; namespace hello_world { -string hello() { return "Goodbye, Mars!"; } +string hello() { return "Hello, World!"; } } // namespace hello_world