home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2001 May / SGI IRIX Base Documentation 2001 May.iso / usr / share / catman / p_man / cat3 / perl5 / base.z / base
Encoding:
Text File  |  1998-10-30  |  875 b   |  67 lines

  1.  
  2.  
  3.  
  4. bbbbaaaasssseeee((((3333))))                                                                bbbbaaaasssseeee((((3333))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      base - Establish IS-A relationship with base class at compile time
  10.  
  11. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  12.          package Baz;
  13.  
  14.          use base qw(Foo Bar);
  15.  
  16.  
  17. DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
  18.      Roughly similar in effect to
  19.  
  20.          BEGIN {
  21.              require Foo;
  22.              require Bar;
  23.              push @ISA, qw(Foo Bar);
  24.          }
  25.  
  26.      This module was introduced with Perl 5.004_04.
  27.  
  28. BBBBUUUUGGGGSSSS
  29.      Needs proper documentation!
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.