home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-2 / Inter.Net 55-2.iso / Mandrake / mdkinst / usr / bin / perl-install / c.pm < prev    next >
Encoding:
Perl POD Document  |  2000-01-12  |  106 b   |  13 lines

  1. package c;
  2.  
  3.  
  4.  
  5. use c::stuff;
  6.  
  7. sub AUTOLOAD {
  8.     $AUTOLOAD =~ /::(.*)/;
  9.     goto &{$c::stuff::{$1}};
  10. }
  11.  
  12. 1;
  13.