Help for this page

Select Code to Download


  1. or download this
    $|++;
    for (split //, "Just a proud\b\b\b\b\b\bnother Perl hacker,\n") {
      print;
      select (undef, undef, undef, 0.3);
    }
    
  2. or download this
    $| = 1;
    while (read(STDIN, $buf, 1)) {
      print $buf;
    }