Re: ClojureCLR questions

2009-12-04 Thread dmiller
On Dec 4, 1:35 am, mac wrote: > Apologies if this has been answered, did a quick search but found only > pieces of info. > Is it possible to run ClojureCLR on Mono yet? > There was an issue with the BigDecimal dependency from J#? > > /Markus I don't know if anyone has tried running on Mono yet

Re: ClojureCLR questions

2009-12-04 Thread dmiller
Mike K, > 1.  IronPython needs to be syntactically compatible with Python, so > there were struggles over an attribute syntax that would be valid > Python syntax > > 2.  Python class (type) semantics are more flexible than .net type > semantics, so classes in IronPython are not real .net types. >

Re: ClojureCLR questions

2009-12-03 Thread mac
Apologies if this has been answered, did a quick search but found only pieces of info. Is it possible to run ClojureCLR on Mono yet? There was an issue with the BigDecimal dependency from J#? /Markus On Dec 3, 5:21 am, dmiller wrote: > 1. CLR Interop:  Interop is the focus of development at the

Re: ClojureCLR questions

2009-12-03 Thread Mike K
Thanks for your reply David! On Dec 2, 9:21 pm, dmiller wrote: >  Do you have some specific use cases [for .net attributes]?  That would be > stimulating. One (common?) use case is that a WCF service can't be implemented without support for attributes. I'm a big Python and IronPython fan, so I

Re: ClojureCLR questions

2009-12-02 Thread dmiller
1. CLR Interop: Interop is the focus of development at the moment. Work is progressing on those things that the JVM implementation doesn't worry about: ref/out params, assembly references, generics, etc.I haven't spent much think time on attributes yet. Do you have some specific use cases?

ClojureCLR questions

2009-12-01 Thread Mike K
Hi Clojurites! I'm reading about Clojure and ClojureCLR with great interest. Since I'm a .net developer with little Java / JVM experience, I'm particularly interested in ClojureCLR. It seems like David M. and crew are doing a fantastic job with the CLR implementation! A few quick questions: 1.