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


in reply to Re^3: Including files
in thread Including files

Sorry, I think you’re reading Juerd’s tutorial back-to-front.

So now tell me again why I'm not supposed to just use require to read in a library of functions?

Well, it’s usually better to say:

use MyModule LIST;

because that’s a convenient shorthand for:

BEGIN { require Module; Module->import( LIST ); }

which is likely to be what you want (see use.) But whether it’s use or require, that’s exactly what you are supposed to use to “read in a library of functions”. Juerd isn’t telling you not to use require, he’s telling you that neither require nor do will give you the equivalent of C’s #include.

In fact, in C I have to add macro definitions and ifs to get include files to include only once.

Exactly! But Juerd’s point is that some programmers want to use #include to include the same code in multiple places, and that won’t work with require. It will work with do, except that “code evaluated with do FILENAME cannot see lexicals in the enclosing scope” — do. So if you have a file “foo.pl”:

$foo = 42; print "In foo.pl: \$foo = $foo\n"

which you then try to “include” in another file using do:

use strict; use warnings; my $foo = 17; print "Before do: \$foo = $foo\n"; do 'foo.pl'; print "After do: \$foo = $foo\n";

the result is probably not what you wanted:

13:54 >perl 990_SoPW.pl Before do: $foo = 17 In foo.pl: $foo = 42 After do: $foo = 17 13:54 >

Hope that helps,

Athanasius <°(((><contra mundum Iustus alius egestas vitae, eros Piratica,