Re: data not pushing to list

2003-08-14 Thread Jeff 'japhy' Pinyan
On Aug 7, Trina Espinoza said: >Is there any reason why this doesn't print the @missing? >Ive also tried unless ($myhash{$elem} == 1) { push(@missing, $frame) } >Any insight into what I'm doing wrong would be greatly appreciated. I'd like to know what you're trying to do... I think you're using t

data not pushing to list

2003-08-14 Thread Trina Espinoza
Is there any reason why this doesn't print the @missing? Ive also tried unless ($myhash{$elem} == 1) { push(@missing, $frame) } Any insight into what I'm doing wrong would be greatly appreciated. Thanks! -T CODE: @missing = ""; @framelist= (1, 2, 3, 6, 10); $sta

Re: data not pushing to list

2003-08-14 Thread Li Ngok Lam
> Is there any reason why this doesn't print the @missing? > Ive also tried unless ($myhash{$elem} == 1) { push(@missing, $frame) } > Any insight into what I'm doing wrong would be greatly appreciated. > @missing = ""; Wrong assignment, should be: my @missing = (); my %myhash = (); > @framelist=