ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Coro/t/10_bugs.t
Revision: 1.1
Committed: Mon Dec 12 20:28:30 2005 UTC (18 years, 7 months ago) by root
Content type: application/x-troff
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# Content
1 $|=1;
2 print "1..3\n";
3
4 use Coro;
5
6 print "ok 1\n";
7
8 async {
9 print "ok 2\n";
10 $1
11 }->join;
12
13 print "ok 3\n";