Help for this page

Select Code to Download


  1. or download this
    use threads ();
    my $foo;
    threads->new( sub {print "thread: coderef = ".\$foo."\n"} )->join;
    print "  main: coderef = ".\$foo."\n";
    
  2. or download this
    use threads ();
    sub foo {1}
    threads->new( sub {print "thread: coderef = ".\&foo."\n"} )->join;
    print "  main: coderef = ".\&foo."\n";
    
  3. or download this
    use threads ();
    threads->new( sub {
    ...
        # do your Benchmark stuff
    } )->join;
    print "Benchmark has been loaded!\n" if defined $Benchmark::VERSION;
    
  4. or download this
    use threads ();
    threads->new( sub {
    ...
        # do your Benchmark stuff
    } )->join;
    print "Benchmark has not been loaded!\n" unless defined $Benchmark::VE
    +RSION;
    
  5. or download this
    use threads ();
    threads->new( sub {
    ...
        # do your Benchmark stuff
    } )->join;
    use Benchmark;
    
  6. or download this
    use threads ();
    my $thread;
    ...
    }
    use Benchmark;
    $thread->join;