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"; [download]
wrong:
$foo = "bar"; my $foo; [download]
anders pearson