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

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