Rust is one of the best in class. Here is an example:
fn main() { let s1 = String::from("hello"); let s2 = s1; println!("{}, world!", s1); }
This gives: