http://www.perlmonks.org?node_id=967254

sriharsha.sm has asked for the wisdom of the Perl Monks concerning the following question:

Is there any difference between the following two codes which is used to import the modules? If so which is the recommended practice?
use Foo; use Foo::Bar;
and
use Foo::Bar;