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