3 lines
79 B
Text
3 lines
79 B
Text
let mut s = "World".to_string();
|
|
s.insert_str(0, "Hello ");
|
|
println!("{}", s);
|