2021-05-08 17:45:10 +07:00
|
|
|
// option3.rs
|
2021-05-08 16:52:27 +07:00
|
|
|
// Make me compile! Execute `rustlings hint option3` for hints
|
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
struct Point {
|
|
|
|
x: i32,
|
|
|
|
y: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let y: Option<Point> = Some(Point { x: 100, y: 200 });
|
|
|
|
|
|
|
|
match y {
|
|
|
|
Some(p) => println!("Co-ordinates are{},{} ", p.x, p.y),
|
|
|
|
_ => println!("no match"),
|
|
|
|
}
|
|
|
|
// Fix without deleting this line.
|
|
|
|
y;
|
|
|
|
}
|