Help for this page

Select Code to Download


  1. or download this
    package HashBasedObject;
    sub new {
    ...
      return {%$self};
    }
    1;
    
  2. or download this
    package ArrayBasedObject;
    sub new {
    ...
      return [@$self];
    }
    1;