Re: Parakeet 0.3

2004-10-05 Thread Leopold Toetsch
Michel Pelletier [EMAIL PROTECTED] wrote: Parakeet is an object-oriented Forth-like stack language for the Parrot VM. It is written in PIR and compiled its code directly to PIR. Committed to CVS now. I've replaced the end opcode with this sequence: clear_eh exit 0 and added a comment,

Re: Parakeet 0.3

2004-10-04 Thread Leopold Toetsch
Michel Pelletier [EMAIL PROTECTED] wrote: Parakeet is an object-oriented Forth-like stack language for the Parrot VM. Is that a new error? $ ../../parrot parakeet.imc test.pk Welcome! [ ... ] Passed! Goodbye! No entries on IntReg_Stack!

Re: Parakeet 0.3

2004-10-04 Thread Matt Diephouse
On Mon, 4 Oct 2004 14:06:00 +0200, Leopold Toetsch [EMAIL PROTECTED] wrote: Is that a new error? [ ... ] No entries on IntReg_Stack! That means there's no end opcode in the PIR that's being dynamically compiled. The compile opcode expects a return value (success/failure) -- an int. --

Re: Parakeet 0.3

2004-10-04 Thread Dan Sugalski
At 1:12 PM -0700 9/29/04, Michel Pelletier wrote: Parakeet is an object-oriented Forth-like stack language for the Parrot VM. It is written in PIR and compiled its code directly to PIR. Parakeet lets you do logical, numeric and string operations and comparisons, conditionals and loops, define

Re: Parakeet 0.3

2004-10-04 Thread Michel Pelletier
On Mon, 2004-10-04 at 08:37, Dan Sugalski wrote: At 1:12 PM -0700 9/29/04, Michel Pelletier wrote: Parakeet is an object-oriented Forth-like stack language for the Parrot VM. It is written in PIR and compiled its code directly to PIR. Parakeet lets you do logical, numeric and string

Re: Parakeet 0.3

2004-10-04 Thread Michel Pelletier
On Mon, 2004-10-04 at 06:50, Matt Diephouse wrote: On Mon, 4 Oct 2004 14:06:00 +0200, Leopold Toetsch [EMAIL PROTECTED] wrote: Is that a new error? [ ... ] No entries on IntReg_Stack! That means there's no end opcode in the PIR that's being dynamically compiled. The compile

Re: Parakeet 0.3

2004-10-04 Thread Jens Rieks
On Monday 04 October 2004 18:00, Michel Pelletier wrote: Restricted CVS access would be great. Do you need an ssh key or something? You just need a perl.org account. You can create it here: http://auth.perl.org/auth/account Then, just send your username to the list. jens

Re: Parakeet 0.3

2004-10-01 Thread Leopold Toetsch
Michel Pelletier [EMAIL PROTECTED] wrote: On Thu, 2004-09-30 at 01:10, Leopold Toetsch wrote: Should it go into CVS abd being included in 0.1.1? If no one else has any objection that would be fine by me, it would encourage more people to try it out. Ok. ... I presume I would update it by

Re: Parakeet 0.3

2004-09-30 Thread Leopold Toetsch
Michel Pelletier [EMAIL PROTECTED] wrote: Parakeet is an object-oriented Forth-like stack language for the Parrot VM. It is written in PIR and compiled its code directly to PIR. Should it go into CVS abd being included in 0.1.1? -Michel leo

Parakeet 0.3

2004-09-29 Thread Michel Pelletier
Parakeet is an object-oriented Forth-like stack language for the Parrot VM. It is written in PIR and compiled its code directly to PIR. Parakeet lets you do logical, numeric and string operations and comparisons, conditionals and loops, define variables, functions, classes methods, create