Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re^4: Including files

by Athanasius (Archbishop)
on Aug 30, 2014 at 04:04 UTC ( [id://1099057]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use MyModule LIST;
    
  2. or download this
    BEGIN { require Module; Module->import( LIST ); }
    
  3. or download this
    $foo = 42;
    print "In foo.pl: \$foo = $foo\n"
    
  4. or download this
    use strict;
    use warnings;
    ...
    print "Before do: \$foo = $foo\n";
    do 'foo.pl';
    print "After  do: \$foo = $foo\n";
    
  5. or download this
    13:54 >perl 990_SoPW.pl
    Before do: $foo = 17
    ...
    After  do: $foo = 17
    
    13:54 >
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-25 06:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found