*** empty log message ***

This commit is contained in:
2006-07-30 15:53:42 +00:00
parent e6be1240e1
commit 913b7dd072
9 changed files with 136 additions and 82 deletions

View File

@ -17,7 +17,6 @@ BEGIN
getline x < "abc";
if (x == "a") print "xxxxxxxxxxxxxxxx"; else print x;
*/
/*
@ -26,9 +25,13 @@ BEGIN
print "--------------";
*/
getline x < "abc";
print x > "abc";
if (getline x < "abc" == -1)
{
print "ERRNO = ", ERRNO;
}
print (1 (2 getline j) j);
print "abc" 1 + 2 3 + 49 2 / 3;
print x > "def";
// print (1 (2 getline j) j);
// print "abc" 1 + 2 3 + 49 2 / 3;
}

View File

@ -1,7 +1,7 @@
/hello/
{
//print FILENAME;
print "**1**" $0;
print "**1**" $0;
//nextfile;
print "----------------";
}

View File

@ -1,13 +1,14 @@
BEGIN
{
j = -20;
for (i = -10; i < 10; i++)
{
if (i == 5) exit; /*break;*/
if (i == 5) exit;
//if (i == 5) break;
}
j = -10;
while (j < 10)
{
if (j == 5) break;
@ -15,3 +16,8 @@ BEGIN
}
}
END
{
print "i = ", i;
print "j = ", j;
}