simple_shadowing/
lib.rs

1pub fn number () {
2
3let x= 88;
4let x= x+1;
5let x= x*6;
6println!("{}",x);
7}