diff --git a/exercises/12_options/options3.rs b/exercises/12_options/options3.rs index 23c15eab..1ac9335c 100644 --- a/exercises/12_options/options3.rs +++ b/exercises/12_options/options3.rs @@ -3,8 +3,6 @@ // Execute `rustlings hint options3` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE - struct Point { x: i32, y: i32, @@ -13,9 +11,9 @@ struct Point { fn main() { let y: Option = Some(Point { x: 100, y: 200 }); - match y { + let y = match y { Some(p) => println!("Co-ordinates are {},{} ", p.x, p.y), _ => panic!("no match!"), - } + }; y; // Fix without deleting this line. }