Re: Heterogenous array

2006-01-02 Thread Xavier Noria
On Jan 2, 2006, at 12:53, Aditi Gupta wrote: The error message "argument "1,2,undef,3,4" isn't numeric" was being displayed. But with Data Dumper it is working. That message is a warning, your code was probably doing some math with something that didn't look like a number. From your message

Re: Heterogenous array

2006-01-02 Thread Aditi Gupta
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 wrote: > > : @aoa = ([0..5], [EMAIL PROTECTED]); > : where @va

RE: Heterogenous array

2006-01-02 Thread Charles K. Clarkson
Aditi Gupta 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