Help for this page

Select Code to Download


  1. or download this
    foreach $c (each %couples) {
       print "$c\n";
    };
    
  2. or download this
    foreach $c ("abbot","costello") {
       print "$c\n";
    };
    
  3. or download this
    while (my ($c,$d) = each %couples){
      print "$c $d\n";
    }
    
  4. or download this
    print "$_ $couples{$_}$/" for (keys %couples);