rustlings/exercises/options/options3.rs

18 lines
383 B
Rust
Raw Permalink Normal View History

2022-07-14 10:34:50 -05:00
// options3.rs
2022-07-14 10:53:42 -05:00
// Execute `rustlings hint options3` or use the `hint` watch subcommand for a hint.
struct Point {
x: i32,
y: i32,
}
fn main() {
let y: Option<Point> = Some(Point { x: 100, y: 200 });
match y {
2023-02-23 13:07:12 -06:00
Some(ref p) => println!("Co-ordinates are {},{} ", p.x, p.y),
_ => println!("no match"),
}
y; // Fix without deleting this line.
}