simple_shadowing 0.1.0

shadow procedure
Documentation
1
2
3
4
5
6
7
pub fn number () {

let x= 88;
let x= x+1;
let x= x*6;
println!("{}",x);
}