Same problem here.
my solution : i'm currently using Clojure Box - http://clojure.bighugh.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Clojure" group.
To post to this group, send email to clojure@googleg
my try :
;;; *** application code ***
;;; (my-capitalize "ab c") -> "Ab C"
;;; (my-capitalize "ab") -> "Ab"
;;; (my-capitalize "") -> ""
;;; (def s "ab c")
(defn my-capitalize [s]
(words->string (map capitalize (string->words s))) )
;;; *** libraries code ***
;;; (string->words "") -> []