
You've met String in the ownership vault — now learn to make it grow:
let mut s = String::from("Keeper");
s.push_str(" of keys"); // append text to the end
push_str is the chisel for living inscriptions. (Its cousin push adds a single character.)
