Re: [ANN] clojure-py 0.2 released

2012-04-11 Thread Jacek Laskowski
On Tue, Apr 10, 2012 at 4:57 AM, Timothy Baldridge  wrote:
> And it's always good to give links with a project release:

While we're at it, I'd also add a one-sentence introduction about what
the tool/library/framework is for (even in the subject of upcoming
[ANN] emails).

Jacek

-- 
Jacek Laskowski
Functional languages (Clojure), Java EE, and IBM WebSphere -
http://blog.japila.pl
"Never discourage anyone who continually makes progress, no matter how
slow." Plato

-- 
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


Re: [ANN] clojure-py 0.2 released

2012-04-10 Thread Zhitong He
A good way to learn clojure, I would like to have a try :-)

On Tue, Apr 10, 2012 at 4:09 PM, Devin Walters  wrote:
> Thanks for this. I've been enjoying reading the clojure-py code side-by-side 
> with Clojure proper.
>
> '(Devin Walters)
>
>
> On Monday, April 9, 2012 at 9:57 PM, Timothy Baldridge wrote:
>
>> And it's always good to give links with a project release:
>>
>> Source:
>>
>> https://github.com/halgari/clojure-py
>>
>> Also via easy_install:
>>
>> easy_install clojure-py
>>
>> Timothy Baldridge
>>
>> --
>> 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 
>> (mailto: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 
>> (mailto:clojure+unsubscr...@googlegroups.com)
>> For more options, visit this group at
>> http://groups.google.com/group/clojure?hl=en
>
>
>
> --
> 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



-- 
Zhitong He
Sun Yat-sen University

-- 
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


Re: [ANN] clojure-py 0.2 released

2012-04-10 Thread Devin Walters
Thanks for this. I've been enjoying reading the clojure-py code side-by-side 
with Clojure proper. 

'(Devin Walters)


On Monday, April 9, 2012 at 9:57 PM, Timothy Baldridge wrote:

> And it's always good to give links with a project release:
> 
> Source:
> 
> https://github.com/halgari/clojure-py
> 
> Also via easy_install:
> 
> easy_install clojure-py
> 
> Timothy Baldridge
> 
> -- 
> 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 
> (mailto: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 
> (mailto:clojure+unsubscr...@googlegroups.com)
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en



-- 
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


Re: [ANN] clojure-py 0.2 released

2012-04-09 Thread Timothy Baldridge
And it's always good to give links with a project release:

Source:

https://github.com/halgari/clojure-py

Also via easy_install:

easy_install clojure-py

Timothy Baldridge

-- 
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


[ANN] clojure-py 0.2 released

2012-04-09 Thread Timothy Baldridge
I'm proud to announce the release of clojure-py 0.2!

There are numerous changes in this version, a few highlights:

* implemented deftype with protocol support
* implemented defprotocol and extend
* implemented reify
* implemented defrecord
* binding is supported
* implemented defmulti and defmethod
* support for derive, supers, bases, etc.
* try/catch, try/finally, with-open
* python generators are seq'able (better interop)
* over 290 tests are implemented
* countless bug fixes

Known issues:

There is a bug in the compiler currently that does not support
try/catch/finally blocks. try/catch and try/finally work just fine,
it's only the combination of these three. This will be fixed in the
next release.

Roadmap:

version 0.3 -
   Greatly improved compiler re-written for speed, and code simplicity.
   Python 3 support
   Full implementation of clojure.core (including STM features)

version 1.0 -
   Fault-tolerant, distributed programming via Erlang style
concurrency. This will allow us to "code around the GIL" and at the
same time have distributed capabilities not seen in any other Clojure
dialect.

Thanks to the many developers who have been working on this project
the past few weeks. It's exciting to see the clojure-py community
continue to grow!

Timothy Baldridge

-- 
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