Dilvan <dil...@gmail.com> writes: > Do you know how can I "bootstrap" Clojure before using any Clojure > specific data structure (from Java or Jython)?
It seems to be fine if you put it on the Java system classpath instead of python.path: $ jython -J-cp clojure-1.2.0.jar Jython 2.5.1 (Release_2_5_1:6813, Sep 26 2009, 13:47:54) [Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)] on java1.6.0_22 Type "help", "copyright", "credits" or "license" for more information. >>> from clojure.lang import PersistentList >>> b= PersistentList.create([7, 8, 2]) >>> b (7 8 2) -- 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