Literal string in a mutable variable can be replaced



examples/variables/mutable-string/src/main.rs
fn main() {
    let mut text = "Hello World!";
    println!("{}", text);

    text = "Something else";
    println!("{}", text);
}

Hello World!
Something else