(keyword? x)
Return true if x is a Keyword
(defn keyword? [x] (instance? Keyword x))
(core/defmacro keyword? [x] (bool-expr `(instance? Keyword ~x)))