Hi,
I was just having a go at using Fargo in a simple cli application that is currently using FSharp.SystemCommandLine, and I have a question about reading arguments as a collection -
With FSharp.SystemCommandLine I can define one string argument, and then one argument as an array of strings, such that I can take a command line like
command1 fileName property1 property2 propertyN
and have the data parsed into
arg1 = fileName
arg2 = [property1, property2, propertyN]
Does Fargo have a way to handle that?
I suppose there's a similar question about options - is it possible to have an option with multiple values that get parsed into a collection automatically? (rather than doing something like having one option with a value of "property1;property2..." and splitting it afterwards)
Thanks.