Pushing a single character

let mut half\_text = String::from("Hal");
half_text.push('f');    // => Half
Comments