Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Get Time Diff *without* Date::Manip

by ehdonhon (Curate)
on Nov 17, 2003 at 17:36 UTC ( [id://307747]=note: print w/replies, xml ) Need Help??


in reply to Get Time Diff *without* Date::Manip

I guess it depends on what you mean by "External". The Benchmark module is part of the core Perl distro, and does exactly what you want. (from the pod):

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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://307747]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (5)
As of 2024-03-28 23:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found