summaryrefslogtreecommitdiff
path: root/minigrep/src/main.rs
diff options
context:
space:
mode:
authorj-james2022-11-15 08:00:02 +0000
committerj-james2022-11-15 08:01:55 +0000
commitef73dc1db2f0389912e442b0f6cd5fa6712d4026 (patch)
tree44d5673de3be8e6caf879914498572ea83f23cfa /minigrep/src/main.rs
parent06615702d85d5640984ab0e6a7b3155df4d261a3 (diff)
Add the I/O project from the Rust book
Diffstat (limited to 'minigrep/src/main.rs')
-rw-r--r--minigrep/src/main.rs23
1 files changed, 23 insertions, 0 deletions
diff --git a/minigrep/src/main.rs b/minigrep/src/main.rs
new file mode 100644
index 0000000..5066347
--- /dev/null
+++ b/minigrep/src/main.rs
@@ -0,0 +1,23 @@
+use std::env;
+use std::process;
+
+use minigrep::Config;
+
+fn main() {
+ let args: Vec<String> = env::args().collect();
+ // & is a reference, so we don't worry abt the borrow checker until args goes out of scope
+ let config = Config::new(&args).unwrap_or_else(|err| {
+ eprintln!("Problem parsing arguments: {}", err);
+ process::exit(1);
+ });
+
+ // println!("Searching for {}", config.query);
+ // println!("In file {}", config.filename);
+
+ // passing a variable without an ampersand moves it
+ if let Err(e) = minigrep::run(config) {
+ // this syntax is a little bit weird - you're almost implicitly running run()
+ eprintln!("Application error: {}", e);
+ process::exit(1);
+ }
+}