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