it's not important to comment code. code should be self-documenting

This commit is contained in:
2026-01-16 21:16:13 +02:00
parent 2cb3dd99d3
commit 9a78cdbd17
2 changed files with 9 additions and 1 deletions

7
Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "hello_world_jujutsu"
version = "0.1.0"

View File

@@ -1,3 +1,4 @@
fn main() {
println!("Hello, world!");
let message = "Hello, world!";
println!("{message}");
}