There's currently no way that I've found to have a default option when an `@Option` is an array ```swift @Option(parsing: .upToNextOption) var foo: [String] ``` I'd like to do something like: ```swift @Option(default: ["someValue"], parsing: .upToNextOption) var foo: [String] ``` So even if this option is not set, we still get this information.