From c1173d8f24988fbcabf6235886faeec4f92b9407 Mon Sep 17 00:00:00 2001 From: dxrkness Date: Fri, 16 Jan 2026 21:28:56 +0200 Subject: [PATCH] only print hello world --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index c6e2d7d..abd98a4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,6 +1,4 @@ /// This is the best implementation of this program to ever exist. fn main() { - let message = "Hello, world!"; - println!("{message}"); - println!("Bye bitches!"); + println!("Hello, world!"); }