Help for this page

Select Code to Download


  1. or download this
    C:> perl -v | head -2 | tail -1
    This is perl 5, version 24, subversion 0 (v5.24.0) built for MSWin32-x
    +64-multi-thread
    ...
            0 running and detached
    C:> perl -Mthreads -le "async { sleep 100; }->detach ; exit;"
    C:>
    
  2. or download this
    $ perl -v | head -2 | tail -1
    This is perl, v5.8.5 built for i386-linux-thread-multi
    ...
    $ perl -Mthreads -le 'no warnings; async { sleep 100; }->detach ; exit
    +;'
    A thread exited while 2 threads were running.
    $