$_ = shift;
s////g;
print;
################
while(<>) {
/^(w+)/;
print $_.',';
}
#############
if(($_ = 5)==5) {print;}
##############
$x = 7;
if (($x <=> 0)==($x=$x)) {print 'true';}
else{print 'false';}
#######################
print "Hello World" or die "trying";
######################
print eval qw(qw(qw()));
Crazy Perl Code
Leave a Reply
You must be logged in to post a comment.