ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/t/01_process.t
Revision: 1.1
Committed: Tue Jul 10 01:43:21 2001 UTC (23 years ago) by root
Content type: application/x-troff
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 $|=1;
2     print "1..3\n";
3    
4     use Coro;
5     use Coro::Process;
6    
7     sub p1 : Coro {
8     print "ok 2\n";
9     }
10    
11     print "ok 1\n";
12     yield;
13     print "ok 3\n";
14