in reply to Re^2: Help creating a function
in thread Help creating a function

See Module::Load

Replies are listed 'Best First'.
Re^4: Help creating a function
by varghees (Novice) on Feb 17, 2011 at 07:14 UTC
    I tried Module::Load also. but no luck
    use Data::Dumper; print Dumper {A=>'testA',B=>'testB'};
    using 'use' statement as above code, I get the output as
    $VAR1 = { 'A' => 'testA', 'B' => 'testB' };
    but when i try loading the module using Module::Load as below, prints nothing.
    use Module::Load; load 'Data::Dumper'; print Dumper {A=>'testA',B=>'testB'};