["John".to_owned(), "Smith".to_owned()]; join(&names[0], &names[1]) } fn join(a: &String, b: &String) -> String { a.clone() + " " + b } The ...
確定! 回上一頁