fn main() { let s = "123".to_string(); let n = s.parse::().unwrap() + 0.001; println!("The string is '{}'", s); println!("The parsed number is '{}'", n) }