Skip to content

Instantly share code, notes, and snippets.

@eldewall
Created December 9, 2015 13:39
Show Gist options
  • Save eldewall/d20223a5dc395bc6a1ea to your computer and use it in GitHub Desktop.
Save eldewall/d20223a5dc395bc6a1ea to your computer and use it in GitHub Desktop.
(def options {:a ["a" "b" "c"] :b "thingy" :c {"x" [1 2 3]}})
(defn option-template
[options]
(for [[k v] options]
(case v
vector? (select-field k v)
map? (option-template v)
[:label v)))
; funkar dock inte
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment