Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    );
    
    print "$friends{g}{eyes}\n";
    
  2. or download this
    for my $i(keys %friends) {
      print $i
        if ($friends{$i}{eyes} eq "brown" && $i =~ /^J/);
    }