(simple-symbol? x)
Return true if x is a symbol without a namespace
(defn simple-symbol? [x] (and (symbol? x) (nil? (namespace x))))