xref: /openbsd-src/gnu/usr.bin/perl/lib/perl5db/t/rt-124203 (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
1use threads;
2my $thr = threads->create(\&sub1);
3sub sub1 {
4   print("In the thread\n");
5}
6$thr->join;
7print "Finished\n";