home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / MacPerl 5.0.3 / Preinstalled MacPerl (FAT) / lib / integer.pm < prev    next >
Encoding:
Perl POD Document  |  1994-12-26  |  84 b   |  12 lines  |  [TEXT/McPL]

  1. package integer;
  2.  
  3. sub import {
  4.     $^H |= 1;
  5. }
  6.  
  7. sub unimport {
  8.     $^H &= ~1;
  9. }
  10.  
  11. 1;
  12.