This commit is contained in:
2008-03-21 03:49:53 +00:00
parent f9c7b599d4
commit b52f039c69
358 changed files with 6823 additions and 6288 deletions

31
ase/cmd/awk/x.awk Normal file
View File

@@ -0,0 +1,31 @@
#main ()
{
#print (("%f", 1.0)); # syntax error
print ((10) + 20 * 4);
print ((10) + 20 * 4, (20), (30));
print (10) + 20 * 4, (20), (30);
print (("%f", 1.0) in x);
print ("%f", 1.0);
#print ("%f", 1.0), 1; # syntax error
print ("%f", 1.0) in x, 1;
print ((((10) + 20)));
print ((10) + 20, 50);
}
BEGIN {
#print 1
#|
#"test";
# */
#print 1 |
# 1;
print 0.0;
print 10;
print fflush ("abc");
}