ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/t/01_process.t
Revision: 1.4
Committed: Sat Nov 25 00:40:26 2006 UTC (17 years, 6 months ago) by root
Content type: application/x-troff
Branch: MAIN
Changes since 1.3: +1 -1 lines
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    
6     sub p1 : Coro {
7     print "ok 2\n";
8     }
9    
10     print "ok 1\n";
11 root 1.4 cede; cede;
12 root 1.1 print "ok 3\n";
13