my $a = async { ... }; ... some other stuff; my $b = async { ... }; $_->join for $a, $b; #### async { ... }->detach; ... some other stuff; async { ... }->detach;