String Rustlang

let mut hello = String::from("Hello, ");

hello.push('w');
hello.push_str("orld!");
Flyhouse_Squarewheel