On Dec 22, 2008, at 1:42 PM, Brian Doyle wrote:
It would appear that using (:import ...) and (import ...)
with the ns function work the same (svn rev 1172.)
1:1 user=> (ns blah (import (java.net URL)))
nil
1:2 blah=> (URL. "http://www.clojure.org";)
#http://www.clojure.org>
and
1:1 user=> (
It would appear that using (:import ...) and (import ...)
with the ns function work the same (svn rev 1172.)
1:1 user=> (ns blah (import (java.net URL)))
nil
1:2 blah=> (URL. "http://www.clojure.org";)
#http://www.clojure.org>
and
1:1 user=> (ns blah2 (:import (java.net URL)))
nil
1:2 blah2=> (U