Statement Perl

$_ = "xabcy\n";
print if /abc/;   # Could be written: print $_ if $_ =~ /abc/;