Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: What is Exported from modules

by gam3 (Curate)
on Jul 12, 2005 at 16:21 UTC ( [id://474318]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use one qw (one two three five);
    use two qw (one two four);
    ...
    print"\n";
    
    print join(' ', one, two, three, four), "\n";
    
  2. or download this
    package one;
    
    ...
    sub three { 1.3; }
    sub four { 1.4; }
    sub five { 1.5; }
    
  3. or download this
    package two;
    
    ...
    sub two { 2.2; }
    sub three { 2.3; }
    sub four { 2.4; }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-03-29 02:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found