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

@@ -3,6 +3,6 @@ fn main() {
println!("Spell a number: {number}");
// TODO: Fix the compiler error by changing the line below without renaming the variable.
number = 3;
let number = 3;
println!("Number plus two is: {}", number + 2);
}