Help for this page

Select Code to Download


  1. or download this
      tie %hash, 'MyHashClass', @files;
      my @data = $hash{$key};                # convienent!
    
  2. or download this
    package MyHashClass;
    use strict;
    ...
      return @ret;
    }
    1;