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!" }