home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual Thematic 7: Programming / CDAT7.iso / Share / Editores / Perl5 / perl / lib / site / auto / Storable / freeze.al < prev    next >
Encoding:
Text File  |  1997-08-10  |  247 b   |  15 lines

  1. # NOTE: Derived from blib\lib\Storable.pm.  Changes made here will be lost.
  2. package Storable;
  3.  
  4. #
  5. # freeze
  6. #
  7. # Store oject and its hierarchy in memory and return a scalar
  8. # containing the result.
  9. #
  10. sub freeze {
  11.     _freeze(0, @_);
  12. }
  13.  
  14. 1;
  15.