Help for this page

Select Code to Download


  1. or download this
      $ perl thread.pl -N=100
      Time taken w/ threads: 0.0077 seconds
      Time taken w/ forks: 0.0021 seconds
    
  2. or download this
    #! perl -slw
    use strict;
    ...
    if (dump($complexData) ne dump($complexData2)) {
        warn "Data did not match!";
    }