The Parrot team is proud to announce the release of Parrot version 0.0.10, code named "Juice" (based on the new -Oj optimization flag). It is downloadable from http://www.cpan.org/authors/id/S/SF/SFINK/parrot-0.0.10.tar.gz. If you would like to check the latest copy out from CVS, see these instructions.

Try it out by unpacking it, then running:

perl Configure.pl make make test

or for a newer, *much* faster way to run the tests:

perl Configure.pl make cd languages/imcc; make; cd ../.. make test IMCC=languages/imcc/imcc

If you would like to join in the fun, all discussion occurs on the perl6-internals mailing list. Start from www.parrotcode.org for information on all Parroty things.

Enhancements in 0.0.10 include:

Check out the mailing list archive or just download the code and try it out!

Replies are listed 'Best First'.
Re: Parrot 0.0.10 released (deserving of song)
by dug (Chaplain) on Mar 19, 2003 at 20:44 UTC
    I am endlessly impressed with the rapid progress of Parrot, and raise my glass to the contributers.

    Song and drink for everyone. In pasm, of course ;-)
    # Mmmm, beer good set I1, 99 # bottles of beer set I2, 1 # single bottle set S1, " of beer on the wall,\n" set S2, " of beer,\n" set S3, "Take one down, pass it around,\n" set S4, " of beer on the wall\n\n" set S5, " bottle" set S6, " bottles" set S7, "No more bottles of beer on the wall\n\n" set S8, "*Buuurrp*\n" branch n_bottles # start drinkin' n_bottles: print I1 print S6 print S1 print I1 print S6 print S2 print S3 dec I1 eq I1, I2, bottle_of # Aww, we're getting low print I1 print S6 print S4 ne I1, I2, n_bottles # keep on drinkin' bottle_of: print I1 print S5 print S4 branch one_bottle # bout time for a liver transplant one_bottle: print I1 # it's been fun print S5 print S1 print I1 print S5 print S2 print S3 print S7 print S8 end

    -- dug
Re: Parrot 0.0.10 released
by gmpassos (Priest) on Mar 19, 2003 at 04:40 UTC
    Is parrot working/compiling fine on Win32? The last time (I don't remember what version) I can't test it on Win32.

    Graciliano M. P.
    "The creativity is the expression of the liberty".

        I think that will be better a MingW and VC++ version (they already are there?). Of course that support for borland is good, but you stay dependent of their giant DLLs.

        Graciliano M. P.
        "The creativity is the expression of the liberty".