mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-02 03:08:03 +08:00
9 lines
153 B
Rust
Executable File
9 lines
153 B
Rust
Executable File
fn main() {
|
|
// ANCHOR: here
|
|
let s = String::from("hello world");
|
|
|
|
let hello = &s[0..5];
|
|
let world = &s[6..11];
|
|
// ANCHOR_END: here
|
|
}
|