> -----Original Message-----
> From: webmaster [mailto:[EMAIL PROTECTED]]
> Sent: 21 August 2001 14:48
> To: perl
> Subject: inquiry
> 
> 
> what does
> Global symbol "@ARG" requires explicit package name at 
> testbio1.pl line 4.
> Global symbol "$sbjct_scr" requires explicit package name at 
> testbio1.pl 
> line 29
> .
> Global symbol "%query_conunts" requires explicit package name at 
> testbio1.pl lin
> e 46.
> Global symbol "$sbjct_srs" requires explicit package name at 
> testbio1.pl 
> line 48
> mean?
You are using strict, which is checking that only declared variables are
being used,
and in your source these have been misspelt.  

> and why on this lines I am getting a comp error...
> {
>   while ($query_src=~ /$pattern/g)
>   {
>     $query_conunts{$pattern}++;
>   }
>   wile ($sbjct_srs=~ /$pattern/g)
This should be while
>   {
>     $sbjct_counts{ $pattern }++;
>   }
> }
>  the whole wource code is here:
> 

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to