ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/t/01_process.t
Revision: 1.3
Committed: Mon Jul 23 02:14:19 2001 UTC (22 years, 11 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-2_5, rel-2_0, rel-2_1, rel-1_1, rel-1_0, rel-1_9, rel-1_2, rel-1_5, rel-1_4, rel-1_7, rel-1_6, rel-1_31, stack_sharing
Changes since 1.2: +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.3 cede;
12 root 1.1 print "ok 3\n";
13