Help for this page

Select Code to Download


  1. or download this
    my $object = new Object();
    $object->hash(
    ...
        dos  => 'two',
        tres => 'three',
    );
    
  2. or download this
    sub hash {
        my $class = shift;
    ...
        $class->{uno} = $param->{uno};
        print $class->{uno}, "\n";
    }