Pragmas
Beginning |
Previous |
Next
How About Those Pragmas?
Pragmas tell Perl how to handle certain things. Some of these certain things
are:
use integer;- Perl uses floating point math by
defualt, this pragma tells Perl to use integer math, from here to the
end of the enclosing block
use strict 'vars';- forces use of lexical
variables, in other words, you have to scope the daylights out of your
code, from here to the end of the enclosing block
use lib (list);- add new library paths for
"
use" and "require" statements
Beginning |
Previous |
Next
Last Modified: $Date: 1997/05/02 07:17:46 $