Featherweight Perl6.

2005-02-02 Thread Autrijus Tang
Hi. Today I have started working on specifying and implementing Featherweight Perl6 (FP6), a side-effect-free subset of Perl6: http://autrijus.org/pugs/fp6/ # FP6, the language http://autrijus.org/pugs/ # Pugs, the implementation Since I am not well-versed in past Perl6 language

Re: Featherweight Perl6.

2005-02-02 Thread Luke Palmer
Autrijus Tang writes: Hi. Today I have started working on specifying and implementing Featherweight Perl6 (FP6), a side-effect-free subset of Perl6: http://autrijus.org/pugs/fp6/ # FP6, the language http://autrijus.org/pugs/ # Pugs, the implementation Awesome. This should

Re: Featherweight Perl6.

2005-02-02 Thread Autrijus Tang
On Wed, Feb 02, 2005 at 04:07:26PM -0700, Luke Palmer wrote: Also, is the all lists are lazy by default rule correctly used in the @squares and @fib examples? Is there a way to turn them into functions instead of arrays? @fib ::= (1, 1, for zip(@fib;@fib[1...]) - { $^a + $^b }) I