Dana 12.01.01, Elston, Jeremy napisa:
> The value is not initialized. As the error states, $fct has not been
> initialized (assigned a value). Initialize $fct by assigning a value to it.
> my $fct = 0;
> or
> my($fct);
> $fct = 0;
> etc...
> Bear in mind that this is only a wa
The value is not initialized. As the error states, $fct has not been
initialized (assigned a value). Initialize $fct by assigning a value to it.
my $fct = 0;
or
my($fct);
$fct = 0;
etc...
Bear in mind that this is only a warning, not a critical error. This error
does