mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-14 00:17:16 +00:00
14 lines
278 B
Rust
14 lines
278 B
Rust
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),
|
|
_ => panic!("no match!"),
|
|
}
|
|
y; // Fix without deleting this line.
|
|
}
|