in reply to Re: Need advice on checking two hashes values and keys
in thread Need advice on checking two hashes values and keys

thanks for the advice on improving. I will follow those.

I like how you call the file in to be read with Inline::File module. however, I am using netbeans and I cdon't know how to load up a module from CPAN to this IDE. it seems to be asking for .nbm file while CPAN is providing a .PL extension. don't know if these are friendly to each other. any ideas?

  • Comment on Re^2: Need advice on checking two hashes values and keys

Replies are listed 'Best First'.
Re^3: Need advice on checking two hashes values and keys
by kcott (Archbishop) on Jun 04, 2015 at 21:55 UTC
    "I like how you call the file in to be read ..."

    No external files are involved. There's just data embedded in the script.

    "... with Inline::File module."

    The module I used, and provided a link to, was Inline::Files (with an 's' at the end). This module is about 2 weeks old. I simply installed it using the cpan utility, which comes with the standard Perl distribution, like this from the command line:

    $ cpan Inline::Files

    You can find Inline::File (no 's' at the end) on CPAN. That name is probably just a typo: it provides the module Inline::Files. That module, however, is about 12 years old. So, make sure you're accessing the Inline::Files module I originally indicated.

    "... I am using netbeans and I cdon't know how to load up a module from CPAN to this IDE."

    I've never used "netbeans". I can't help with this; perhaps another monk can.

    "it seems to be asking for .nbm file while CPAN is providing a .PL extension."

    You'd be better off posting a verbatim copy of what "it seems to be asking for" rather than this vague description. Here's the Inline::Files MANIFEST: that may, or may not, be useful.

    -- Ken