Link to home
Start Free TrialLog in
Avatar of tanc02
tanc02

asked on

What os that ?

require "auth.conf";
require 5;                         what is 5 and how does it use ?


Avatar of ozo
ozo
Flag of United States of America image

perldoc -f require
    require EXPR
    require Demands some semantics specified by EXPR, or by `$_' if EXPR
            is not supplied. If EXPR is numeric, demands that the
            current version of Perl (`$]' or $PERL_VERSION) be equal
            or greater than EXPR.

            Otherwise, demands that a library file be included if it
            hasn't already been included. The file is included via
            the do-FILE mechanism, which is essentially just a
            variety of `eval()'. Has semantics similar to the
            following subroutine:
ASKER CERTIFIED SOLUTION
Avatar of TYoung
TYoung

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial