Hello,

The error message "argument "1,2,undef,3,4" isn't numeric" was being
displayed. But with Data Dumper it is working.

Thanks:-)

On 1/2/06, Charles K. Clarkson <[EMAIL PROTECTED]> wrote:
>
> 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>
>
>
>

Reply via email to