From d4540e5d904b0c18c8d45391e117b51cfa3c7992 Mon Sep 17 00:00:00 2001 From: Kelechi Ogujiofor Date: Sat, 8 Nov 2025 14:18:29 +0100 Subject: [PATCH] Update lib.rs --- exercises/practice/hello-world/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/hello-world/src/lib.rs b/exercises/practice/hello-world/src/lib.rs index 05f6f4a94e4..9c7f9270d9d 100644 --- a/exercises/practice/hello-world/src/lib.rs +++ b/exercises/practice/hello-world/src/lib.rs @@ -1,4 +1,4 @@ // &'static is a "lifetime specifier", something you'll learn more about later pub fn hello() -> &'static str { - "Goodbye, Mars!" + "Hello,world!" }