Re: Perl6 OO Cookbook: new features

2002-10-11 Thread Simon Cozens
[EMAIL PROTECTED] (Michael Lazzaro) writes: -- A way to submit fixes new stuff. -- The ability to add (threaded) comments questions, to encourage less important discussions off perl6-language. -- Problem/Solution ratings for recipes that everyone

Re: Fw: perl6 operator precedence table

2002-10-11 Thread Chris Dutton
On Wednesday, October 9, 2002, at 05:03 PM, Trey Harris wrote: In a message dated Wed, 9 Oct 2002, Michael Lazzaro writes: humor Uh-oh: my life is gonna suck. I've spent days hunting obscure bugs that were caused by a single mistyped character. Now I'll be spending days hunting obscure

Re: Delegation syntax

2002-10-11 Thread Ralph Mellor
[proposal for delegation syntax, drawing from Class::Delegation] If something is part of the method interface, it ought to be declared as a method. method steer is really(Wheel) is also(???) { .profit!!! } That's tidy, and is sorta on the lines of my own initial thoughts. But afaict

Re: perl6 operator precedence table

2002-10-11 Thread Jonathan Scott Duff
On Fri, Oct 11, 2002 at 03:21:38PM +0100, Aaron Crane wrote: Vaguely heretical, I know, but I'd be inclined to do something like this: Perl 5 Proposed Perl 6 $x $y $x $y $x || $y $x | $y Larry just added nice character doubling ops to be more consistent and here you want to

Re: perl6 operator precedence table

2002-10-11 Thread Larry Wall
On Fri, 11 Oct 2002, Jonathan Scott Duff wrote: : On Fri, Oct 11, 2002 at 03:21:38PM +0100, Aaron Crane wrote: : Vaguely heretical, I know, but I'd be inclined to do something like this: : :Perl 5 Proposed Perl 6 :$x $y $x $y :$x || $y $x | $y : : Larry just added nice

Re: Object Instantiation

2002-10-11 Thread Michael Lazzaro
On Thursday, October 10, 2002, at 05:11 PM, Larry Wall wrote: my MyClass $obj = .new; snip my new MyClass $obj; Thanks for the clarification. I like those two OK, personally. If I were chained to one of those, I wouldn't chew my leg off. Tying it together with the other thread