On Wed, Jun 15, 2011 at 1:58 PM, octopusgrabbus
<octopusgrab...@gmail.com> wrote:
> java.lang.ClassNotFoundException: :use.clojure-csv (test_csv.clj:1)
>
> (ns test-csv
>  (:import (java.io BufferedReader FileReader)
>  (:use clojure-csv)))

Oops. You're trying to import your use clause.

(ns test-csv
  (:import (java.io BufferedReader FileReader))
  (:use clojure-csv))

And do try to find yourself an editor you like that will reindent by
paren matching ... :)

-- 
Protege: What is this seething mass of parentheses?!
Master: Your father's Lisp REPL. This is the language of a true
hacker. Not as clumsy or random as C++; a language for a more
civilized age.

-- 
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