Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    my $valueM = 'myvalue';
    my $hashref;
    $$hashref{mainKey}{$valueM}{key} = 'value';
    
  2. or download this
    my %hash;
    $hash{key} = 'value';
    ...