1 2 3 4 5 6 7
fn main() { let a; a = "hello world infer"; let b: &str; b = "hello world specified"; }