rustlang струна
let mut hello = String::from("Hello, ");
hello.push('w');
hello.push_str("orld!");
Flyhouse_Squarewheel
let mut hello = String::from("Hello, ");
hello.push('w');
hello.push_str("orld!");