[[Rust]] An expression evaluates to a value. In Rust that can also mean a scope block as follows: ```rust fn main() { let y = { let x = 3; x + 1 }; println!("The value of y is: {y}"); } ```