Re: swank-clojure + slime

2009-03-08 Thread christophe turle
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

Re: Capitalize string

2009-03-08 Thread christophe turle
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 "") -> []