5 lines
117 B
Rust
5 lines
117 B
Rust
fn main(){
|
|
let mut hello = String::from("Hello world");
|
|
hello.push_str("!!!!");
|
|
println!("{}", hello);
|
|
}
|