mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-01 07:53:30 +02:00
fix(variables5): Add nudge for shadowing variable
This commit is contained in:
committed by
mokou
co-authored by
mokou
parent
81edc4234f
commit
60410cfd2e
@@ -6,6 +6,6 @@
|
||||
fn main() {
|
||||
let number = "T-H-R-E-E"; // don't change this line
|
||||
println!("Spell a Number : {}", number);
|
||||
number = 3;
|
||||
number = 3; // don't rename this variable
|
||||
println!("Number plus two is : {}", number + 2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user