What is the proper syntax to be able to use blank? ?

I've tried a bunch of things in the docs, but either the :require
syntax is bad, or I get a Java exception saying blank? not recognized.

Method 1
-------------

(ns test-csv
  (:gen-class)
  (:use clojure.contrib.command-line)
  (:use clojure-csv.core)
  (:require '[clojure.string :as str]))

java.lang.RuntimeException: java.lang.Exception: lib names inside
prefix lists must not contain periods (test_csv.clj:2)

Method 2
-------------
(ns test-csv
  (:gen-class)
  (:use clojure.contrib.command-line)
  (:use clojure-csv.core)
  (:require clojure.contrib.string))

  [compile] Compiling namespace test-csv
error evaluating:
((compile-stale source-path compile-path))
java.lang.RuntimeException: java.lang.Exception: Unable to resolve
symbol: blank? in this context (test_csv.clj:16)

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