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

Use strict warnings and diagnostics or die, use, require, import
use strict; use warnings; use Module::Load; BEGIN { load 'Data::Dumper'; 'Data::Dumper'->import; }; print Dumper {A=>'testA',B=>'testB'}; __END__ $VAR1 = { 'A' => 'testA', 'B' => 'testB' };