in reply to Timer::Runtime proposed

I would check $^T, then I would patch Devel::Timer by studying Devel::Modlist, so that
perl -d:Timer myProgram.pl
works the way you have use Timer::Runtime;, and I'd also make sure
use Devel::Timer -startEnd;
works the same way , so as not to interfere with Devel::Timers existing functionality.

I hope you understand what I'm trying to say.

Replies are listed 'Best First'.
Re^2: Timer::Runtime proposed
by awohld (Hermit) on Mar 28, 2011 at 23:24 UTC
    I like your suggestion. I'm going to look into Devel::Timer and not creating a new module form scratch.

    Thanks