Help for this page

Select Code to Download


  1. or download this
    $VAR1 = [
        {
    ...
            'lname' => 'Smith',
        },
    ];
    
  2. or download this
    my %hash = map { $_->{'id'} => $_ } @$data;
    
  3. or download this
    $VAR2 = {
        '1' => {
    ...
                'lname' => 'Smith',
            },
    };