Pushing an entire String
let mut hi = String::from("Hey there...");
hi.push\_str("How are you doing??");
// => Hey there...How are you doing??
println!("{hi}");
Comments
let mut hi = String::from("Hey there...");
hi.push\_str("How are you doing??");
// => Hey there...How are you doing??
println!("{hi}");