ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/t/01_process.t
Revision: 1.2
Committed: Sat Jul 14 22:14:21 2001 UTC (22 years, 11 months ago) by root
Content type: application/x-troff
Branch: MAIN
Changes since 1.1: +0 -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     yield;
12     print "ok 3\n";
13