in reply to How to export hash references
Package Foo;
This isn't valid. In Perl, package is all in lowercase.
Your actual problem (once that's fixed) is that you are not escaping the dollar symbol.
$ perl -I. -MFoo=$env -le 'print scalar keys %$env' 0 $ perl -I. -MFoo=\$env -le 'print scalar keys %$env' 76
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to export hash references
by Anonymous Monk on Feb 14, 2020 at 12:32 UTC |