Closed jasyip closed 1 year ago
Some programs have long option flags that you can pass, such as --min-value. I cannot access the data member when passing the long name like that, but --minvalue works. Can this program support this? Thanks
--min-value
--minvalue
I learned how to reference them, just do res.args.@"min-value"
res.args.@"min-value"
Some programs have long option flags that you can pass, such as
--min-value
. I cannot access the data member when passing the long name like that, but--minvalue
works. Can this program support this? Thanks