aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-23 15:37:31 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-23 15:37:31 -0600
commit05b8b6339c4b00b0e898c8456677be2883c8a072 (patch)
treeb304096225f66e8b00ee913103d9a1b6bf3ab3d7 /src/main.rs
parentad8ee545d0f818dfb52c4ba154bed0b8c1bd6e44 (diff)
downloadmakers-05b8b6339c4b00b0e898c8456677be2883c8a072.tar.gz
makers-05b8b6339c4b00b0e898c8456677be2883c8a072.zip
read arguments
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index e7a11a9..2316546 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,9 @@
+
+mod args;
+
+use args::Args;
+
fn main() {
- println!("Hello, world!");
+ let args = Args::from_env_and_args();
+ dbg!(args);
}