fn main() { let str = dangle(); println!("{str}"); } fn dangle() -> &String { let s = String::from("Hello"); &s }