mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-04 04:28:04 +08:00
10 lines
206 B
Rust
10 lines
206 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let s1 = String::from("tic");
|
||
|
let s2 = String::from("tac");
|
||
|
let s3 = String::from("toe");
|
||
|
|
||
|
let s = format!("{}-{}-{}", s1, s2, s3);
|
||
|
// ANCHOR_END: here
|
||
|
}
|