fn main() { let s1 = String::from("Hello"); let s2 = &s1; // قرض گرفتن println!("{}", s1); println!("{}", s2); }