Help for this page
my $f='123456789123456789'; my $g='123456789123456788'; print "g == f\n" if $g == $f; print "g eq f\n" if $g eq $f;
g == f