I want to make use of a hash variable inside of a separate package file but it doesn't seem to really access the variable. It does work if I include the package in the same file (and change 'my' to 'our'). I've been searching for the answer for several hours now, and I really don't get it
#!/usr/bin/perl
use strict;
use warnings;
require 'Config.pm';
print "Hash: ",%Config::amazon_config,"\n";
print "Host: ",$Config::amazon_config{'host'},"\n";
print "Name: ",$Config::amazon_config{name},"\n";
And the Config.pm file
package Config;
my %amazon_config = (
'name' => 'amazon',
'host' => 'localhost',
'user' => 'amazon',
'pass' => 'somepass',
'upload_path' => '/',
'file_types' => [ qw( jpg mobi ) ],
);
1;
When run it returns:
Hash:
Use of uninitialized value in print at Objects.pl line 15.
Host:
Use of uninitialized value in print at Objects.pl line 16.
Name:
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.