fn main() {
let mut s1 = String::from("hello");
s1.push_str(", world!"); // appending the literal to s
println!("{s1}"); // this will print `hello, world!`
}