Help for this page

Select Code to Download


  1. or download this
    use Sub::Name
    foreach (keys %news_sites)
    {
      *{$_} = subname "generator_for_$_" => sub {...}
    }
    
  2. or download this
    foreach my $key (keys %news_sites) {
       *{$key} = sub {
    ...
           warn $key; # this will warn the value used when defining this s
    +ub.
       }
    }