From ea27fffb85aaa46ffe3bd4e46fd6436b88c6bf5c Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Mon, 25 Mar 2024 10:11:54 +0100 Subject: [PATCH] Solve rust/exercises/hello-world --- rust/hello-world/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/hello-world/src/lib.rs b/rust/hello-world/src/lib.rs index 05f6f4a..5c2db6d 100644 --- a/rust/hello-world/src/lib.rs +++ b/rust/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!" }