From 6f62a90c6c4e4c10d3b77131b244802faf17f8b7 Mon Sep 17 00:00:00 2001 From: Avery Winters Date: Wed, 11 Oct 2023 10:39:05 -0500 Subject: [PATCH] Solve rust/hello-world --- rust/hello-world/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust/hello-world/src/lib.rs b/rust/hello-world/src/lib.rs index 05f6f4a..2709b7b 100644 --- a/rust/hello-world/src/lib.rs +++ b/rust/hello-world/src/lib.rs @@ -1,4 +1,3 @@ -// &'static is a "lifetime specifier", something you'll learn more about later pub fn hello() -> &'static str { - "Goodbye, Mars!" + "Hello, World!" }