Re: Risk of unacceptably slow perl6 performance

2000-09-12 Thread Barrie Slaymaker
Adam Turoff wrote: > > And it'll take a decent amount of time to build up a reasonably large > set of discrete benchmarks. Seems like the perl5 test scripts might be a good place to start. - Barrie

Re: Risk of unacceptably slow perl6 performance

2000-09-12 Thread Nathan Torkington
Barrie Slaymaker writes: > > And it'll take a decent amount of time to build up a reasonably large > > set of discrete benchmarks. > > Seems like the perl5 test scripts might be a good place to start. I'd rather see someone write a program that involves file reading and writing, regular expressi

Rambling on Benchmarking [was Re: Risk of unacceptably slow perl6 performance]

2000-09-12 Thread Michael G Schwern
On Tue, Sep 12, 2000 at 06:56:36PM -0600, Nathan Torkington wrote: > I'd rather see someone write a program that involves file reading > and writing, regular expression manipulation, some string tweaking > (length, concatenation, etc), and some object method calls. That > covers the spectrum of T

Re: Risk of unacceptably slow perl6 performance

2000-09-12 Thread Adam Turoff
On Tue, Sep 12, 2000 at 02:27:07AM -0400, Michael G Schwern wrote: > On Tue, Sep 12, 2000 at 12:46:55AM -0500, J. David Blackstone wrote: > > http://dev.perl.org/pm/pos.html mentions the following risk in perl6 > > development: > > > > > 4.We produce a slower interpreter. > > > > It is

Re: Pre-RFC - "use warnings" by default for all non-one-liners

2000-09-12 Thread Piers Cawley
Michael G Schwern <[EMAIL PROTECTED]> writes: > On Fri, Sep 08, 2000 at 04:15:24PM +0100, Piers Cawley wrote: > > my Dog $spot; > > print defined($spot) ? 'defined' : 'undefined'; # undefined > > print $spot->isa('Dog') ? 'Dog' : 'not dog';# Dog; > > That sounds unrelated to this

Re: Pre-RFC - "use warnings" by default for all non-one-liners

2000-09-12 Thread Piers Cawley
Bart Lateur <[EMAIL PROTECTED]> writes: > On Fri, 8 Sep 2000 13:59:52 -0400, Michael G Schwern wrote: > > >Consider: > > > >my Dog $spot = Cat->new; > >print $spot->isa('Dog') ? 'Dog' : 'not dog'; > > > >Currently, $spot is not a dog. It should probably remain that way. > > My gut feel