Help for this page

Select Code to Download


  1. or download this
    my %hash = expand_keys(
        ['key1', 'key2', 'key3'] =>
    ...
          'Value for key4, key5, key6',
        'simple key' => 'Value for simple key'
    );
    
  2. or download this
    sub expand_keys {
        my @result;
    ...
        }
         return @result;
    }