finish part 14
[rust-101.git] / workspace / src / part13.rs
index 311eba5b9b4dca87e4426cf8dde94a65f9565cce..88d1ea6f7755d40efc96940c72174cc0b5622028 100644 (file)
@@ -96,7 +96,7 @@ Options:
     // Finally, we can call the `run` function from the previous part on the options extracted using `get_options`. Edit `main.rs` to call this function.
     // You can now use `cargo run -- <pattern> <files>` to call your program, and see the argument parser and the threads we wrote previously in action!
     pub fn main() {
-        run(get_options());
+        unimplemented!()
     }
 }