On Thursday, Nov 6, 2003, at 09:56 US/Pacific, [EMAIL PROTECTED] wrote:


i now get the below warning along with many others...
how does one declair a varible then?

Global symbol "$site" requires explicit package name at ./makeArf.pl line 17.


I think your hit is at:

foreach $site (@dataFile) { # loop

and that should have been

foreach my $site (@dataFile) { # loop

this way '$site' is limited to the scope of the foreach loop.


ciao drieux

---


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



Reply via email to