intro and variables

This commit is contained in:
2026-01-08 07:30:04 +00:00
parent 53a54ddf90
commit 36cbf9d865
9 changed files with 10 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
fn main() {
// TODO: Change the line below to fix the compiler error.
let x: i32;
let x: i32 = 0;
println!("Number {x}");
println!("Number {}", x);
}