feat(options): completed options

This commit is contained in:
2026-08-04 21:57:34 +02:00
parent 8b15f8d511
commit ad542a4892
3 changed files with 25 additions and 5 deletions
+3 -1
View File
@@ -9,7 +9,9 @@ fn main() {
// TODO: Fix the compiler error by adding something to this match statement.
match optional_point {
Some(p) => println!("Coordinates are {},{}", p.x, p.y),
Some(ref p) => {
println!("Coordinates are {},{}", p.x, p.y)
}
_ => panic!("No match!"),
}