Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    use Tie::IxHash;
    ...
      $data{SomeMoreStuff}{SomeMoreData} = 'x';
    
      print Dumper \%data;
    
  2. or download this
    %data = (
    SomeStuff => {
    ...
      OtherData => 'd'
    }
    );
    
  3. or download this
    $VAR1 = {
              'SomeStuff' => {
    ...
                                   'SomeData' => 'a'
                                 }
            };
    
  4. or download this
    $VAR1 = {
              'SomeStuff' => {
    ...
                                   'OtherData' => 'd',
                                 }
            };