rustlings/exercises/12_options/options3.rs

18 lines
412 B
Rust
Raw Permalink Normal View History

2024-10-28 20:46:17 +00:00
#[derive(Debug)]
struct Point {
x: i32,
y: i32,
}
fn main() {
let optional_point = Some(Point { x: 100, y: 200 });
// TODO: Fix the compiler error by adding something to this match statement.
match optional_point {
2024-10-31 19:40:19 +00:00
Some(ref p) => println!("Co-ordinates are {},{}", p.x, p.y),
2024-10-28 20:46:17 +00:00
_ => panic!("No match!"),
}
println!("{optional_point:?}"); // Don't change this line.
}