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


in reply to quick question on modules

If you use use something::or::other qw(funt) this method, it will export only funt symbol into the caller namespace.

If you use use something::or::other method, it will export list of symbols (subroutines and variables) of the module to be exported into the caller namespace from @EXPORT array defined in something::or::other

Replies are listed 'Best First'.
Re^2: quick question on modules
by Anonymous Monk on Feb 01, 2013 at 10:28 UTC
    The question was "will it use less memory" not "what is the difference between ..."

      The question was "will it use less memory" not "what is the difference between ..."

      And then?