Help for this page

Select Code to Download


  1. or download this
    use Time::HiRes qw( usleep );
    
    for (;;) {
       usleep(250000);
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
       my $e = time;
       printf("%.0f\n", ($e-$s)*100000);
    }