Help for this page

Select Code to Download


  1. or download this
      for my $key ('Foo', grep { $_ ne 'Foo' } keys %HoA) { ... }
    
  2. or download this
      for my $key (
                   exists $HoA{Foo} ? ('Foo') : (),
    ...
      {
        ...
      }