(defn ns-decl? "Returns true if form is a (ns ...) declaration." [form] (and (list? form) (= 'ns (first form))))
Comments top
No comments for ns-decl?. Log in to add a comment.