Help for this page

Select Code to Download


  1. or download this
    %hash = ( (a => 1, b => 2), (a => 101, b => 102) );
    %hash = ( (a => 1, b => 2), (b => 102, a => 101) );
    %hash = ( (b => 2, a => 1), (a => 101, b => 102) );
    %hash = ( (b => 2, a => 1), (b => 102, a => 101) );
    
  2. or download this
    %hash = ( a => 102, b => 2, a => 1, b => 102 );
    
  3. or download this
    my $class = shift;
    my $self = {};
    @$self{qw{x y w h}} = @_;
    bless $self, $class;