trpl-zh-cn/listings/ch04-understanding-ownership/listing-04-01/src/main.rs

9 lines
304 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
{ // s is not valid here, its not yet declared
let s = "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
}