Some Perl Special Variables Some Global Special Arrays and Hashes 19 of 28 : [PREV] [NEXT]

@INC

  • A list of places perl will look for do EXPR, require or use constructs.
  • Mostly contains directories.
  • Can also include hooks into files, such as PAR files.
  • Can also insert code blocks as code references, array references or blessed objects.
  print "Script directories are: @INC\n";
  # eg: qw(C:/Perl/lib C:/Perl/site/lib .)
  • See also the 'use lib' pragma.

© 2004 Barbie barbie@missbarbell.co.uk Home http://birmingham.pm.org/