(defn is-var? "Is this a logic variable: e.g. a symbol prefixed with a ?" [sym] (when (symbol? sym) (let [name (name sym)] (and (= \? (first name)) (not= \? (fnext name))))))
Comments top
No comments for is-var?. Log in to add a comment.