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