Help for this page

Select Code to Download


  1. or download this
    while (1) {
        print "0123456789" x 20;
        sleep(1);
    }
    
  2. or download this
    while (1) {
        print "0123456789" x 20 . "\n";
        sleep(1);
    }
    
  3. or download this
    $| ++;
    while (1) {
        print "0123456789" x 20;
        sleep(1);
    }
    
  4. or download this
    use IO::Handle;
    STDOUT->autoflush();
    ...
        print "0123456789" x 20;
        sleep(1);
    }