ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/eg/cont
Revision: 1.4
Committed: Thu Jul 19 04:36:08 2001 UTC (22 years, 10 months ago) by root
Branch: MAIN
Changes since 1.3: +11 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 #!/usr/bin/perl
2
3 use Coro;
4 use Coro::Cont;
5
6 sub mul23 : Cont {
7 result 2*shift;
8 result 3*shift;
9 }
10
11 my %hash = (1,10,2,20,3,30);
12
13 %hash = map mul23($_), %hash;
14
15 print join(",", %hash), "\n";
16
17 # here is a random-number generator
18
19 sub badrand : Cont {
20 my $seed = 1;
21 while() {
22 $seed = $seed * 121 % 97;
23 result $seed % $_[0];
24 }
25 }
26
27 print badrand($_), " " for 1..30; print "\n";