-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
Description
Which one?
The primary difference seems to be:
https://github.com/nim-lang/Nim/blob/devel/tests/system/params.nim#L16
For parseopt2: f[2].key == "a=c" and f[2].val == "d"
For parseopt: f[2].key == "a" and f[2].val == "c:d"
kaushalmodi and FedericoCeratto