hehenoobhehe has asked for the wisdom of the Perl Monks concerning the following question:
Problem is that if use "use strict;", then I get the error: "Variable "$useTR" is not imported at testCLO.pl line 5." Possible solutions: Use# perl -s testCLO.pl -useTR use strict; no strict "vars"; if ($useTR) { # do TR processing. print "useTR=$useTR\n"; }
INSTEAD, BUt i want to comply with the norms of using "use strict;", is there anything else that I can do to get about this problem? Thanks so much.use strict; no strict "vars";
|
|---|