Mathematica like eval

2014-06-13 Thread Dilvan
ave any ideas on the subject, please let me know. Cheers, Dilvan. -- 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 pat

Re: Mathematica like eval

2014-06-16 Thread Dilvan
see if all the symbols they depend upon are ready (bound). I intend to use this technique to write more flexible DSLs. BTW, if expresso can do some similar to this, I am willing to give it a second look. Any ideas? Cheers, Dilvan. On Friday, June 13, 2014 6:46:56 PM UTC-3, Dil

Jython Interoperability problem

2010-10-29 Thread Dilvan
Hi, It was possible in clojure 1.0.0 to include clojure Persistent collections in Jython: jython -Dpython.path=/clojure_1.0.0/clojure-1.0.0.jar >>>from clojure.lang import PersistentList >>>b= PersistentList.create([7, 8, 2]) >>>b (7 8 2) But with clojure 1.1.0 or 1.2.0 I get: jython -

Re: Jython Interoperability problem

2010-11-08 Thread Dilvan
for use outside of > Clojure:http://github.com/krukow/clj-ds > > Persistent analogue of the Java Collections > Framework:http://code.google.com/p/pcollections/ > > On Fri, 29 Oct 2010 07:41:17 -0700 (PDT) > > > > Dilvan wrote: > >   Hi, > > >    It was pos

Re: Jython Interoperability problem

2010-11-09 Thread Dilvan
ion class? Ref objects seem to be working without any need for a "bootstrap". -- Dilvan Moreira http://java.icmc.usp.brdil...@icmc.usp.br -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@

Re: Jython Interoperability problem

2010-11-21 Thread Dilvan
Thanks, it works for me. On Nov 21, 1:11 am, Alex Osborne wrote: > Dilvan 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 Jav

Reusing Clojure libraries in Java/Jythom/Scala

2010-11-22 Thread Dilvan
police about this issue? The question I need to answer is: Should I keep using the Clojure libraries in my programs or migrate them to some other implementation of immutable collections + Refs (STM) + (maybe) actors? Advices are welcomed :-) DIlvan Moreira -- You received this message b

Re: Reusing Clojure libraries in Java/Jythom/Scala

2010-11-29 Thread Dilvan
to day programs. Cheers, Dilvan On Nov 22, 12:58 pm, Dilvan wrote: >    Hi, > >    During the discussions of the topic "Jython Interoperability > problem", > Mikhail Kryshen suggested implementations of Clojure data structures > outside Clojure: > > >Cloju