in reply to Re^2: Add array ref to another array ref
in thread Add array ref to another array ref
D:\ENV>perl -MData::Dumper -e "$ha = { a => 'A' }; $hb = { b => 'B' }; + $m = { %$ha, %$hb }; print Dumper( $m );" $VAR1 = { 'b' => 'B', 'a' => 'A' };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Add array ref to another array ref
by Anonymous Monk on Jul 15, 2019 at 19:02 UTC | |
by AnomalousMonk (Archbishop) on Jul 15, 2019 at 19:22 UTC |