Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    -to
    -from
    
  2. or download this
    use strict;
    use warnings;
    ...
    my @ab = map { "-$_" } keys %abc;
    
    print "$_\n" for @ab;
    
  3. or download this
    my %ab = map { '-' .$_ => $abc{$_} }  keys %abc;