applied suggested patch; removed $VERSION = $VERSION hack
[p5sagit/p5-mst-13.2.git] / ext / Thread / join2.t
CommitLineData
609f3ea9 1use Thread;
2sub foo {
3 print "In foo with args: @_\n";
4 return (7, 8, 9);
5}
6
7print "Starting thread\n";
8$t = new Thread \&foo, qw(foo bar baz);
9sleep 2;
10print "Joining with $t\n";
11@results = $t->join();
12print "Joining returned @results\n";