(defn make-path "Constructs an ant Path object from Files and strings." [& paths] (let [ant-path (Path. nil)] (doseq [path paths] (.addExisting ant-path (Path. nil (str path)))) ant-path))
Comments top
No comments for make-path. Log in to add a comment.