in reply to Re: Array splice ??
in thread Array splice ??
Abigail is right, your Data::Dumper call is missing from your post... you might also try the following method to dump your data:
#!/usr/bin/perl use strict; use warnings; use Data::Dumper; my @array = qw( test this now); my %hash = ( one => 1, two => 2); print Data::Dumper->Dump([\%hash, \@array], [qw(*hash *array)]);
|
|---|