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