mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-02 11:18:14 +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
|
|
}
|