in reply to Re^4: bug or curly bracket hell?
in thread bug or curly bracket hell?
With strict enabled you can't do certain things that make no sense, like declaring a variable with "my" after you already used that variable.if ( ($line =~ /^VARDB_database/) && ($CLIDB_database < 1) ) {$VARDB_database = $line; my $VARDB_database =~ s/.*=//gi;}
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^6: bug or curly bracket hell?
by MoodyDreams999 (Beadle) on Jan 13, 2023 at 21:52 UTC | |
by Anonymous Monk on Jan 14, 2023 at 01:00 UTC |
In Section
Seekers of Perl Wisdom