Help for this page
$str1 = "Some String"; $str2 = 'Some String'; if( $str1 eq $str2 ) { print ">>$str1<< is identical to >>$str2<<\n"; }
$str1 = "'Some String'"; $str2 = '"Some String"'; ... } ... >>'Some String' is different to >>"Some String"<<