*** empty log message ***

This commit is contained in:
2006-10-28 12:17:57 +00:00
parent 67c78232b2
commit 33dd3d9677
5 changed files with 120 additions and 54 deletions

View File

@ -2,8 +2,15 @@
#main ()
{
#print (("%f", 1.0)); # syntax error
print ((((10) + 20)));
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);
}