Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        select(undef, undef, undef, 0.25);
        print;
    }
    
  2. or download this
    use Time::HiRes qw(sleep);
    while (<>) {
        sleep(0.25);
        print;
    }