This commit is contained in:
Nick Bebout 2016-09-19 10:17:24 -05:00
parent 3eaac56812
commit 137242e609
114 changed files with 10852 additions and 8980 deletions

View file

@ -0,0 +1,16 @@
#!/usr/bin/perl
# $Id: perlcritic_ProhibitInterpolationOfLiterals,v 1.3 2016/06/15 22:18:23 gilles Exp gilles $
use strict;
use warnings;
our $VERSION = q$Revision: 1.3 $;
if ( "\1foo" eq '\1foo' ) {
print "equal\n";
}
else {
print "not equal\n";
}