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
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
> 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=