On Thu, Mar 13, 2014 at 2:29 PM, Alex Chiang
<s3442...@student.rmit.edu.au>wrote:

> Hi all,
>
> I'd like to build a hash mapping from "keyword" => value. By keyword, I
> mean all reversed words in http://learn.perl.org/docs/keywords.html. Do
> you guys know any csv or text file containing all these words?
> I don't want to hard code all these reversed words into list, then
> creating hash for parsing.
>

use 5.016;
use Pod::Functions;
use Data::Dumper

say Dump(\%Flavor);

Pod::Functions is part of the perl core; The other variables exported by
the module may also be of interest.

That being said, I feel like the most pertinent question hasn't been asked.
What are you trying to achieve?

Reply via email to