*** empty log message ***

This commit is contained in:
2006-05-09 15:21:26 +00:00
parent 39f19102f0
commit e56cebdff1
3 changed files with 83 additions and 5 deletions

17
ase/test/awk/t6.awk Normal file
View File

@ -0,0 +1,17 @@
BEGIN
{
for (i = -10; i < 10; i++)
{
if (i == 5) exit; /*break;*/
}
j = -10;
while (j < 10)
{
if (j == 5) break;
j++;
}
}

4
ase/test/awk/t7.awk Normal file
View File

@ -0,0 +1,4 @@
BEGIN { i = 20; j = 0; }
{ i++; }
i % 2 { j++; }
/*END { i = i + 1234; j = j + 1234; }*/