for example here:
let guess: i32 = guess.trim().parse().unwrap();
We need to tell Rust the exact number type we want by using let guess: u32. The colon (:) after guess tells Rust we’ll annotate the variable’s type.
let guess: u32
:
guess