Aditi Gupta <mailto:[EMAIL PROTECTED]> wrote:
: @aoa = ([0..5], [EMAIL PROTECTED]);
: where @values = (1, 2, undef, 3, 4);
: then the program does not accept it.
That works just fine for me. What do you mean by
"the program does not accept it"?
#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper 'Dumper';
my @values = (1, 2, undef, 3, 4);
my @aoa = ([0..5], [EMAIL PROTECTED]);
print Dumper [EMAIL PROTECTED];
__END__
HTH,
Charles K. Clarkson
--
Mobile Homes Specialist
254 968-8328
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>