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