in reply to Merging multiple JSON files into one using JSON::XS
$uuts->{People} = [ @fields ];
with this (array ref):
$uuts->{People} = \@fields;
or this:
$uuts->{People} = @fields;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Merging multiple JSON files into one using JSON::XS
by walkingthecow (Friar) on Aug 12, 2013 at 02:49 UTC |