Help for this page

Select Code to Download


  1. or download this
    use constant ({
        START           => 1000,
    ...
    });
    
    use if MICRO_SEC, qw(Time::HiRes time);
    
  2. or download this
    BEGIN {
        if (MICRO_SEC) {
    ...
            Time::HiRes->import('time');
        }
    }