#![allow(unused_variables)] fn main() { let a = String::from("hello"); let b = String::from(" world"); let c = a.clone() + &b; }