I have a program that I would like to execute like so: `./myprogram --someArg 2 --thisFails - --anotherArg 3` Where the value of `thisFails` should be set to `-` I've also tried: `"-"` to no avail The error I'm getting is: ``` ERROR(S): Option 'thisFails' has no value. ```