*** empty log message ***

This commit is contained in:
2006-09-28 06:58:10 +00:00
parent dadcf0c0f1
commit 5a8894fb13
8 changed files with 54 additions and 42 deletions

16
ase/test/awk/comp.awk Normal file
View File

@ -0,0 +1,16 @@
BEGIN {
print 1 == 1;
print 1 == 0;
print 1.0 == 1;
print 1.1 == 1;
print 1.0 != 1;
print 1.1 != 1;
print "abc" == "abc";
print "abc" != "abc";
a[10] = 2;
print a == 1;
}