summaryrefslogtreecommitdiff
path: root/exercises/12_options
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/12_options')
-rw-r--r--exercises/12_options/options3.rs13
1 files changed, 8 insertions, 5 deletions
diff --git a/exercises/12_options/options3.rs b/exercises/12_options/options3.rs
index 5b70a79..4cedb51 100644
--- a/exercises/12_options/options3.rs
+++ b/exercises/12_options/options3.rs
@@ -1,14 +1,17 @@
+#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
fn main() {
- let y: Option<Point> = Some(Point { x: 100, y: 200 });
+ let optional_point = Some(Point { x: 100, y: 200 });
- match y {
- Some(p) => println!("Co-ordinates are {},{} ", p.x, p.y),
- _ => panic!("no match!"),
+ // TODO: Fix the compiler error by adding something to this match statement.
+ match optional_point {
+ Some(p) => println!("Co-ordinates are {},{}", p.x, p.y),
+ _ => panic!("No match!"),
}
- y; // Fix without deleting this line.
+
+ println!("{optional_point:?}"); // Don't change this line.
}