Help for this page

Select Code to Download


  1. or download this
    my $buffer:shared="";
    sub PRINT {
    ...
     $|++;
     $buffer="";
    }
    
  2. or download this
    my $pt=threads->new(\&PRINT_THREAD);
    sub PRINT_THREAD {
     dump_on_screen();
    }