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