trpl-zh-cn/listings/ch04-understanding-ownership/no-listing-17-slice/src/main.rs
2022-02-06 16:43:51 +08:00

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
}