diff --git a/minigrep/src/main.rs b/minigrep/src/main.rs index e7a11a9..ae7def5 100644 --- a/minigrep/src/main.rs +++ b/minigrep/src/main.rs @@ -1,3 +1,6 @@ +use std::env; + fn main() { - println!("Hello, world!"); + let args: Vec = env::args().collect(); + dbg!(args); }