Help for this page
#!/usr/bin/perl -l ... chomp $str1; print "Match" if $str1 eq $str2; print "No match" unless $str1 eq $str2;
#!/usr/bin/perl -l ... my $str2 = 'Mahesh'; chomp $str1; print $str1 eq $str2 ? 'Match' : 'No match';