Hi cmn,

A few things:

1. The warnings you see are because the clojure.contrib.string namespace 
defines several functions that have the same name as core functions (repeat, 
reverse, etc.).  The recommended way to pull in namespaces like that is to 
do (:require [clojure.contrib.string :as str]), and then the functions can 
be used via (str/repeat ...), (str/reverse ...), etc.
2. As of 1.2, "split" is incorporated into clojure.string, so no need to 
grab clojure.contrib.string just for that function.  clojure.string also 
defines functions with the same name as core functions, so it should be 
pulled in via (:require [clojure.string :as str]), and split can then be 
used via (str/split ...).
3. That EOF error is because process-file needs one more closing paren.

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to