Re: continuation enhanced arcs

2004-12-03 Thread Richard Jolly
On 3 Dec 2004, at 09:46, Luke Palmer wrote: I looked through google groups and couldn't find leo's solution ("putting lexicals in registers", and I can't figure out what that means; couldn't you have a loop counter that isn't a lexical?). I believe its the first in the thread 'Lexicals, continuatio

Re: Parrot & Strong typing

2004-12-01 Thread Richard Jolly
On 1 Dec 2004, at 14:33, Matt Fowles wrote: Strong typing can be more clearly seen in something like haskell Will there be haskell on parrot? How easy/hard would that be? Just curious, Richard

multiple languages clarification - newbie

2004-09-08 Thread Richard Jolly
Hi, Can someone provide clarification on what mixing languages will look like in practice, or point me to where its explained? Can you really do this: #!/usr/bin/perl6 use __Python::sys;# whatever syntax sys.stdout.write( 'hi there');# perl6 syntax matches python syntax here