2 lines
79 B
Perl
2 lines
79 B
Perl
|
$_ = "xabcy\n";
|
||
|
print if /abc/; # Could be written: print $_ if $_ =~ /abc/;
|