To be specific when I say "I wasn't satisfied with...
# announcements
j
To be specific when I say "I wasn't satisfied with how existing Java argument parsers integrate with Kotlin's language features". I wanted to have an argument class with properties to represent arguments, while allowing the properties to be val (not var), non-nullable when the arguments are non-optional, and nullable when the arguments are optional. Karg implements this by declaring arguments as assignments to the class's properties during construction.