Help for this page
# Possibly named argument syntax: threads->create('stack' => $size, ... threads->create( { 'stack' => $size, 'code' => 'function', # or sub{} or \&func 'args' => ... } );
# Set the 'default' thread stack size threads->set_stack_size(1_000_000); ... my @args = @_; ... }