trpl-zh-cn/listings/ch04-understanding-ownership/no-listing-02-string-scope/src/main.rs

11 lines
302 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
{
let s = String::from("hello"); // s is valid from this point forward
// do stuff with s
} // this scope is now over, and s is no
// longer valid
// ANCHOR_END: here
}