in reply to Export global variables not working correctly
You have not exported $bbb variable from AAA package, you have exported $b only.Check your code.
our @EXPORT=('$b','$msg'); our $bbb=BBB->new();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Export global variables not working correctly
by Anonymous Monk on Mar 06, 2015 at 06:02 UTC | |
|
Re^2: Export global variables not working correctly
by Anonymous Monk on Mar 06, 2015 at 06:12 UTC | |
by vinoth.ree (Monsignor) on Mar 06, 2015 at 06:18 UTC | |
by Anonymous Monk on Mar 06, 2015 at 06:33 UTC |