mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-03 20:22:32 +08:00
10 lines
201 B
Rust
Executable File
10 lines
201 B
Rust
Executable File
fn main() {
|
|
// ANCHOR: here
|
|
let s1 = String::from("tic");
|
|
let s2 = String::from("tac");
|
|
let s3 = String::from("toe");
|
|
|
|
let s = s1 + "-" + &s2 + "-" + &s3;
|
|
// ANCHOR_END: here
|
|
}
|