From b50153dcfe9a5f53935a44bc36f1081b8b540ac0 Mon Sep 17 00:00:00 2001 From: rorikstr Date: Tue, 6 May 2025 15:41:52 +0300 Subject: [PATCH] pfff helloworld... --- 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!" }