Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -l
    %couples = (
    ...
      Pter=>"Lous"
    );
    map print, map "$_ is married to $couples{$_}",sort keys%couples
    
  2. or download this
    %c=%couples,map print,map "$_ is married to $c{$_}",sort keys%c