> Date: Thu, 12 Dec 2002 10:11:00 -0800
> From: Michael Lazzaro <[EMAIL PROTECTED]>
>
> On Wednesday, December 11, 2002, at 06:56 PM, Simon Cozens wrote:
> > [EMAIL PROTECTED] (Michael Lazzaro) writes:
> >> Welllll... yes and no. You can make the same argument for operators
> >> upon scalars, for example, since 'scalar' is arguably no more
> >> universal than 'array'. And we could easily use that argument to
> >> remove *all* builtins, period:
> >
> > Now you're getting the idea.
>
> Yes. But Java sucks. Me no like make Perl like Java.
>
> I would still like to be able to do things in Perl6 like:
>
> @out = sort map {...} grep { ... } @in; # [1]
Or, better yet:
@out = sort map grep @in: { ... }: { ... }:;
Hi Mister Maintainence Programmer :-P
Luke