The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/pugs

my %mates = (
  'jane'   => 'joe',
  'sally'  => 'bob',
  'janice' => 'bill',
 );

for %mates.kv -> $girl, $guy { 
  "$girl is dating $guy".say
}