Help for this page

Select Code to Download


  1. or download this
    package DataDefs::Factory;
    use strict;
    ...
    }
    
    1;
    
  2. or download this
    use DataDefs::Factory;
    
    my $thingy = DataDefs::Factory->first_thing;
    
  3. or download this
    ...
    use Clone qw(clone);
    ...
        my($class) = @_;
        return clone($hash_thing);
    }