- Can’t use global $_ in “my” at ./database_attractions_files.pl line 191, near “my $_ “
Execution of ./database_attractions_files.pl aborted due to compilation errors (#1)
- (F) You tried to declare a magical variable as a lexical variable. This
is not allowed, because the magic can be tied to only one location
(namely the global variable) and it would be incredibly confusing to
have variables in your program that looked like magical variables but
weren’t.
😀