pve1 / apply-argv

Simple argv parsing.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple argv parsing.

(parse-argv '("--foo" "bar"
              "--bar=qwe"
              "--qwe"
              "--no-xyz"
              "more" "stuff" "here"))

==> (("more" "stuff" "here") :FOO "bar" :BAR "qwe" :QWE T :XYZ NIL)

About

Simple argv parsing.

License:Other


Languages

Language:Common Lisp 100.0%