string string object rust code example
Example: rustlang string
let mut hello = String::from("Hello, ");
hello.push('w');
hello.push_str("orld!");
let mut hello = String::from("Hello, ");
hello.push('w');
hello.push_str("orld!");