*** empty log message ***
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
/hello/
|
||||
{
|
||||
//print FILENAME;
|
||||
print "**1**" $0;
|
||||
print "**1**" $0;
|
||||
//nextfile;
|
||||
print "----------------";
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user