I get this error: ``` error: expected type, found keyword `let` --> src/main.rs:3:5 | 3 | let two_squared = two * two; | ^^^ ``` That's with this code: ```rust fn main() { let two = 2: let two_squared = two * two; } ```