fn main() { let s1 = String::from("Hello"); let s2 = s1; // مالکیت به s2 منتقل میشود // println!("{}", s1); // خطا: s1 دیگر مالک رشته نیست }