Language Basics Perl

#By default, the pattern-matching operator examines the value stored in $_. 
#This means that you can leave out the =~ operator if you are searching $_: 
print ("hi") if ($_ =~ /abc/); 
print ("hi") if (/abc/); # these two are the same