mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-08 19:10:25 +00:00
399ab328d8
* feat: Add move_semantics5 exercise. * feat: Add option3 exercise * Address review comments. Fix typos, sentence formatting. * Remove unwanted newline. * Address review comments: make comment inline, fix format in print.
20 lines
375 B
Rust
20 lines
375 B
Rust
// option3.rs
|
|
// 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"),
|
|
}
|
|
y; // Fix without deleting this line.
|
|
}
|