Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Difference between use Module::Name and use Module::Name qw /method1 method2/

by tobyink (Canon)
on Jan 29, 2013 at 11:18 UTC ( [id://1015853]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Foo::Bar;
    
    ...
      require Foo::Bar;
      Foo::Bar->import(...);
    };
    
  2. or download this
    use Foo::Bar ();
    
    ...
    BEGIN {
      require Foo::Bar;
    };
    
  3. or download this
    Algorithm::LUHN->import();
    Algorithm::LUHN->import(qw/is_valid/);
    
  4. or download this
    Algorithm::LUHN->import(qw/is_valid/);
    
  5. or download this
    Algorithm::LUHN->import(qw/ :validity /);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1015853]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (7)
As of 2024-04-19 13:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found