RosettaCodeData/Task/File-size/Clojure/file-size.clj

7 lines
172 B
Clojure
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
(require '[clojure.java.io :as io])
2013-04-10 21:29:02 -07:00
(defn show-size [filename]
2015-11-18 06:14:39 +00:00
(println filename "size:" (.length (io/file filename))))
2013-04-10 21:29:02 -07:00
(show-size "input.txt")
(show-size "/input.txt")