From 68d230f1672aa4c170784e93121f1d3bf25e9b86 Mon Sep 17 00:00:00 2001 From: Julio Biason Date: Thu, 14 Apr 2022 10:18:57 -0300 Subject: [PATCH] Show the values --- claptest/src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/claptest/src/main.rs b/claptest/src/main.rs index 73dbc73..734a3f8 100644 --- a/claptest/src/main.rs +++ b/claptest/src/main.rs @@ -12,5 +12,8 @@ struct Params { } fn main() { - let _args = Params::parse(); + let args = Params::parse(); + + println!("Obrigatório: {:?}", args.obr); + println!(" Opcional: {:?}", args.opt); }