Re: ns references clarification

2008-12-22 Thread Stephen C. Gilardi
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=> (

ns references clarification

2008-12-22 Thread Brian Doyle
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