*** empty log message ***

This commit is contained in:
2006-10-05 14:24:38 +00:00
parent 99579addf1
commit c4a787ac59
2 changed files with 6 additions and 5 deletions

View File

@ -10,8 +10,8 @@ BEGIN {
print "1.0!=1 :", (1.0 != 1);
print "1.1!=1 :", (1.1 != 1);
print "abc" == "abc";
print "abc" != "abc";
print "\"abc\" == \"abc\"", ("abc" == "abc");
print "\"abc\" != \"abc\"", ("abc" != "abc");
print "--------------------------";
print "a == \"\" :", (a == "");