home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / MacPerl Source ƒ / MacPerl5 / pod / modpods / English.pod < prev    next >
Encoding:
Text File  |  1994-12-26  |  672 b   |  25 lines  |  [TEXT/MPS ]

  1. =head1 NAME
  2.  
  3. English - use nice English (or awk) names for ugly punctuation variables
  4.  
  5. =head1 SYNOPSIS
  6.  
  7.     use English;
  8.     ...
  9.     if ($ERRNO =~ /denied/) { ... }
  10.  
  11. =head1 DESCRIPTION
  12.  
  13. This module provides aliases for the built-in variables whose
  14. names no one seems to like to read.  Variables with side-effects
  15. which get triggered just by accessing them (like $0) will still 
  16. be affected.
  17.  
  18. For those variables that have an B<awk> version, both long
  19. and short English alternatives are provided.  For example, 
  20. the C<$/> variable can be referred to either $RS or 
  21. $INPUT_RECORD_SEPARATOR if you are using the English module.
  22.  
  23. See L<perlvar> for a complete list of these.
  24.  
  25.