From 45027b1bd73198f839ab42a36a9bd05db332f67d Mon Sep 17 00:00:00 2001 From: dxrkness Date: Sat, 17 Jan 2026 16:34:22 +0200 Subject: [PATCH] add comment to main --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index 8e5005f..324eb21 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,9 +2,11 @@ fn main() { print("Hello, world!"); print("Goodbye, world!"); + // some (not really) documentation comment } // a function that prints the msg fn print(m: &str) { println!("{m}") + // hello ? }