in reply to Re^3: Help creating a function
in thread Help creating a function
using 'use' statement as above code, I get the output asuse Data::Dumper; print Dumper {A=>'testA',B=>'testB'};
but when i try loading the module using Module::Load as below, prints nothing.$VAR1 = { 'A' => 'testA', 'B' => 'testB' };
use Module::Load; load 'Data::Dumper'; print Dumper {A=>'testA',B=>'testB'};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Help creating a function
by Anonymous Monk on Feb 17, 2011 at 07:25 UTC |