mirror of
https://github.com/TangentFoxy/argparse.git
synced 2025-08-23 06:52:29 +00:00
Move more common properties to the front of property lists, so that they can be passed as constructor arguments. E.g. parser:option "-p" "--port" :description "Port number." :default "8080" :convert(tonumber) can now be expressed as parser:option("-p --port", "Port number.", "8080", tonumber)