fix: rename option to options

This commit is contained in:
mokou
2022-07-14 17:34:50 +02:00
parent 472d7944f9
commit b644558c19
5 changed files with 47 additions and 47 deletions

View File

@@ -0,0 +1,19 @@
// options3.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.
}