in reply to Re: Re: Local tests reveal no syntax error but...
in thread Local tests reveal no syntax error but...

you have to declare the variable with my() before you use it.

right:

my $foo; $foo = "bar";

wrong:

$foo = "bar"; my $foo;

anders pearson