the data in the array variable is lost. I have tried using our @net_pnics
You haven't shown any code, but I suspect you're checking in the wrong namespace (i.e. not Net::).
In other words, either use fully-qualified names
package Net;
our @net_pnics;
sub fill_array {
@net_pnics = qw(foo bar);
}
1;
#!/usr/bin/perl -wl
use strict;
use Net;
Net::fill_array();
print "@Net::net_pnics"; # "foo bar"
or use Exporter to export the variable into the namespace of the script Main_Input.pl.
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.