Advertisement
Guest User

Untitled

a guest
Sep 27th, 2011
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. (use '[clojure.string :only (join split)])
  2.  
  3. (->
  4. (slurp "resources/hino.txt")
  5.  
  6. (clojure.string/split #"\n")
  7.  
  8. (->> (map #(clojure.string/split % #"_")))
  9.  
  10. (
  11. juxt
  12.  
  13. #(map count % )
  14.  
  15. )
  16. )
  17.  
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement