How would I go about adding values from a tab delimited string to a plist?
(dolist (x *lines*)
(cl-ppcre:split "\t" x))
*lines* is a list of tab delimited strings loaded from a file, and I want to make a plist of the form
(:a value1 :b value2 :c value 3)
Thanks!