"Scott R. Godin" wrote:
> 
> In article <[EMAIL PROTECTED]>,
>  [EMAIL PROTECTED] (Dominique Dumont) wrote:
> 
> > [EMAIL PROTECTED] (Scott R. Godin) writes:
> 
> Thanks. First seriously constructive response I've gotten. Was beginning
> to think no one reads this list anymore :)
> 
> > > just a bit of silliness I conconcted while reading Damian's OOP... Your
> > > thoughtful appraisal and suggestions would be most welcome. I'm still
> > > experimenting with it off and on. :-)
> >
> > This module could be useful. I don't see any reason to not upload it.
> > Except that the name would be better as Time::Elapsed (which would fit
> > with the other Time::* modules).

Hello Scott,

It seems to me this module covers the same problem space as the
Benchmark module, as it's used like this:

                     use Benchmark;
                     $t0 = new Benchmark;
                     # ... your code here ...
                     $t1 = new Benchmark;
                     $td = timediff($t1, $t0);
                     print "the code took:",timestr($td),"\n";

If I recall, your module took a slightly different approach by reporting
the time it takes for a variable to change. 

  -mark


 . . . . . . . . . . . . . . . . . . . . . . . . . .
   Mark Stosberg              Principal Developer  
   [EMAIL PROTECTED]       Summersault, LLC     
   v: 765-939-9301 ext 223    website development  
 . . . . . http://www.summersault.com/ . . . . . . .

Reply via email to