mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-25 11:28:10 +08:00
7 lines
129 B
Rust
7 lines
129 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let s1: str = "Hello there!";
|
||
|
let s2: str = "How's it going?";
|
||
|
// ANCHOR_END: here
|
||
|
}
|