7 lines
121 B
Text
7 lines
121 B
Text
fn main() {
|
|
let s = "hello".to_owned();
|
|
println!("{}", s);
|
|
|
|
let s1 = s + " world";
|
|
println!("{}", s1);
|
|
}
|