Advertisement
Guest User

Untitled

a guest
Feb 26th, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.19 KB | None | 0 0
  1. package util;
  2.  
  3. use Mojo::Base qw/Exporter/;
  4.  
  5. our @EXPORT_OK = qw/time/;
  6.  
  7. BEGIN {
  8.     if (eval 'use EV 4.0; 1') {
  9.         *time = \&EV::time;
  10.     }
  11.     else {
  12.         *time = \&Time::HiRes::Time;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement