in reply to Re: Announcing Perl-Critic-0.14
in thread Announcing Perl-Critic-0.14
use warnings; use strict; my $t_bar = 1; my $t_foo = 1 if $t_bar; my $f_bar = 0; my $f_foo = 1 if $f_bar; print "true $t_foo false $f_foo"; #->true 1 false #->Use of uninitialized value in concatenation (.) or string ...
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Announcing Perl-Critic-0.14
by bart (Canon) on Jan 30, 2006 at 16:47 UTC | |
by holli (Abbot) on Jan 30, 2006 at 17:26 UTC | |
by Aristotle (Chancellor) on Jan 30, 2006 at 17:59 UTC | |
by diotalevi (Canon) on Jan 30, 2006 at 21:08 UTC | |
by ysth (Canon) on Jan 30, 2006 at 18:43 UTC |