Help for this page
#test.pl use warnings; ... my $test = "Test"; print Dumper($test); #works, prints $VAR1='Test'; test_function; #fails, "undefined subroutine &Misc::Test::Dumper....."
#test.pm use strict; ... sub test_function { print Dumper($test); }