fn main() {
    let mut my_string = String::from("Hello");
    my_string.push_str(", World!");
    println!("{}", my_string);
}